views:

46

answers:

1

Hi! At my current project(huge enterprise system) I'm faced to scenario when "simple" objects like table, reference list are created at runtime via system info stored in the same DB(special sys tables). Users can create those simple objects and relations between them.
The complicated objects are created by developers. For the first case We are using SqlOM, and for the second Linq2Sql. So business logic is a mixture of those concepts(sqlOM+linq2sql).

Now I'm thinking about migration to Entity Framework or another ORM that supports to create concrete objects and mapping at runtime. Does anybody can give me an advice?

A: 

You should checkout Fluent NHibernate for this sort of scenario. http://fluentnhibernate.org/

Jeff Schumacher