What is .NET Remoting
posted by eschneider(15) 3 years, 7 months ago 0
Actually load balancing is possible: http://support.microsoft.com/default.aspx?scid=kb;en-us;830217 http://msdn.microsoft.com/en-us/library/ms998565.aspx
Reply
Creation of objects using Late-Binding technique
posted by eschneider(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
Five Reasons for using an ORM Tool
posted by eschneider(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...