I am working on project that uses this pattern
var businessEntity = new DAL().GetObject(id);
// do something with the business entity.
Has anyone followed this pattern?
Does this cause any memory management issues? Any complications with the garbage collector?
Thanks