Can Entity Framework be used for the purpose of entity/schema definition at application runtime?

Posted by Kabeer on Stack Overflow See other posts from Stack Overflow or by Kabeer
Published on 2010-05-30T14:01:30Z Indexed on 2010/05/30 14:02 UTC
Read the original article Hit count: 266

Hello. Can 'Entity Framework' be used for the purpose of entity definition at application runtime?

Ok, to make it simple, here is what I want to achieve:

  • My application is a product. I should be able to define entities at runtime on the basis of inputs gathered from an 'authoring' user (in effect this means 'model first' approach).
  • These entities are of course persistable. Further, after having defined the entities and their relationships, I should be able to make complex queries across them for many reasons, including reports.

Is the above possible and how? So far what I have realized is that there is a dependency on Visual Studio.

© Stack Overflow or respective owner

Related posts about .NET

Related posts about ADO.NET