eschneider


Comments:

Creation of objects using Late-Binding technique

posted by eschneidereschneider(15) 3 years, 5 months ago 0

I would comment that this should be avoided.
This is IMO a bad example of when you need to do this.
Why not just create the employee directly?
Is it a derived employee maybe? Even so you can still deserialize while accounting for derived types...

Also usually you can design around these issues.

Schneider

Reply

Five Reasons for using an ORM Tool

posted by eschneidereschneider(15) 3 years ago 0

Think this article leaves a lot of things out.

1. Working with an existing db schema.
2. Dealing for FK and other constraints.
3. Dealing with transactions that span multiple tables or databases or systems/services.
4. The impact of the the framework can hinder the design of the business objects.
5. Integration with existing design.

I do think it's something to consider, you just need to look at some of the other drawbacks...

Reply