An ORM built by Microsoft and is available as part of .Net framework 3.5 and later.
58
votes
3answers
19k views
Is Entity Framework Suitable For High-Traffic Websites?
Is Entity Framework 4 a good solution for a public website with potentially 1000 hits/second?
In my understanding EF is a viable solution for mostly smaller or intranet websites, but wouldn't scale ...
46
votes
14answers
2k views
Is SQL important if I know ORM frameworks well? [closed]
I don't have any serious experience in SQL and I even hate to write SQL instead of LINQ. I am happy enough with ORMs.
From the employers and sector view point, is it important to know SQL? Do I have ...
22
votes
4answers
3k views
Entity Framework with large systems - how to divide models?
I'm working with a SQL Server database with 1000+ tables, another few hundred views, and several thousand stored procedures. We are looking to start using Entity Framework for our newer projects, and ...
21
votes
3answers
4k views
Is Entity Framework Code First a bit meaningless/useless in production and what is a good EF strategy for production?
I have been programming recently with Entity Framework 4.1 Code First and am loving it for development, but with only an end plan and a rapidly changing feature list, I am constantly modifying the ...
18
votes
5answers
2k views
MVC, WCF, EF, LINQ - Is it just me? [closed]
...or are things getting more complicated?
It seems to me that you need to know a lot of stuff to 'properly' develop an MS web app these days. In the bad old days when we didn't know any better we ...
16
votes
5answers
6k views
What are some arguments AGAINST using EntityFramework?
The application I am currently building has been using Stored procedures and hand-crafted class models to represent database objects. Some people have suggested using Entity Framework and I am ...
13
votes
8answers
2k views
Is writing your own Data Access / Data Mapping Layer a “good” idea?
We're currently in a situation where we have a choice between using an out-of-the-box object-relational mapper or rolling our own
We have a legacy application (ASP.NET + SQL Server) where the ...
12
votes
5answers
14k views
Should we use Entity Framework?
We currently have the following stack :
VS 2005
Web forms
SQL Server 2005
IIS 6
We are planning on transitioning to this :
VS 2010
MVC and Web Forms
SQL Server 2008
IIS 7
My question is, when ...
12
votes
5answers
7k views
Is There a Real Advantage to Generic Repository?
Was reading through some articles on the advantages of creating Generic Repositories for a new app (example). The idea seems nice because it lets me use the same repository to do several things for ...
11
votes
5answers
8k views
Is Entity framework reliable enough to use in a Corporate Project? Should I use Entity? [closed]
I'm a junior developer who's just completed a project using Entity framework. Unfortunately I was chewed out by one of the Senior Developers at my work citing that I should have used ADO.net and that ...
11
votes
3answers
2k views
Is it a good practice set connection strings in a web config?
Recently I have a discussion with some of my colleagues at my work because they said that it's better have in a .DLL a string connection encrypted. And I said why just don't use the string connection ...
11
votes
4answers
1k views
Is a Unique ID column needed in a many-to-many (junction) table?
Getting a few projects started with EF, but I had some questions about join tables and keys etc. Lets say I have a table of applications and a table of permissions. Applications have many permissions ...
10
votes
4answers
1k views
Should Repositories return IQueryable?
I have been seeing a lot of projects that have repositories that return instances of IQueryable. This allows additional filters and sorting can be performed on the IQueryable by other code, which ...
9
votes
7answers
1k views
Is Entity Framework ready for production?
I'm looking into Entity Framework for a new project that I'm going to be taking on and as part of my research into it I'm asking some industry professionals if it's stable and ready for 'real world' ...
9
votes
3answers
5k views
Entity Framework and layer separation
I'm trying to work a bit with Entity Framework and I got a question regarding the separation of layers.
I usually use the UI -> BLL -> DAL approach and I'm wondering how to use EF here.
My DAL would ...