Search Results

1
vote

For what type of project is Entity Framework currently suited?

The Entity Framework is suitable for all applications which would benefit from having an ORM layer. Daniel Simmons post goes into detail on this. …
2
votes

Is the Entity Framework basically another CRUD code generator?

The Entity Framework is suitable for all applications which would benefit from having an ORM (object relational mapping) layer. Daniel Simmons post goes into detail on this. …
1
vote

Entity Framework and Application Architecture (loose coupling, etc)

I'm not aware of any ORM that deals gracefully with n-tier solutions where you want to have platform independence. The EF works well when everything is happening within an ObjectContext, when you h …
2
votes

Entity Framework: how to return a base type from L2E

Why don't you apply an extension method on IQueryable< Entry > called ApplyBaseEntryFilter() which would apply this filter and return an IQueryable< Entry >. This is an example of ho …
1
vote

Entity Framework inheritance: TPT, TPH or none?

Hi, When considering how to represent inheritance in the database, you need to consider a few things. If you have many different sub classes you can have a lot of extra joins in queries i …
1
vote

Using Entity Framework as Data Access Layer

http://blog.keithpatton.com/2009/05/30/Entity+Framework+ …