Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • could you please tell some of the advantages for "Entity Framework gives you a wealth of coding and functional advantages"? Commented Oct 29, 2015 at 15:44
  • 3
    this is what he meant. var id = Entity.Where(i => i.Id == 1337).Single() encapsulated and wrap this in a repository you basically cannot do query logic like this from the outside, which either forces you to A add more code to the repository and the interface for fetching id. B return the entity context from the repository so that you can write the query logic (which is just nonsense) Commented Jan 21, 2016 at 10:24
  • How is it redundant, when EF tightly couples your model to DAL? Commented Mar 25 at 21:57