Wednesday, April 29, 2009

One feature no .NET OR/M tool provides

Here's an interesting tidbit. There is one thing my OR/M tool can do which no other OR/M tool in the world can do - mine is the only one which lets you create entity, criteria and interface classes for a complex stored procedure which contains insert statements, temp tables, etc but still returns a resultset.

Every other OR/M tool analyzes the stored proc and says it is an action stored proc. I don't analyze the stored procs automatically, I let the user enter the parameters, run the query and then depending on the resultset, I generate the criteria, entity and interface classes.

So, it beats LLBLGenPro, LINQ to SQL and Entity Framework. None of them support these stored proecedures!!!

It is a shame guys!!

No comments:

Post a Comment