The codefirst tag has no wiki summary.
2
votes
2answers
380 views
How to model users accounts in ASP MVC Framework with Entity Framework using code-first approach?
How do you design your code-first approach in entity framework when your code should include user data (name, password...) without repeating/overwriting what the MVC framework will generate in terms ...
1
vote
0answers
108 views
What strategy to follow while matching sql server datatypes in C# Code First approach while using Entity Framework
While matching SQL Server datatypes with C# Code First Approach in Entity Framework, what are specific points that we should keep in mind so that our C# datatype should match exactly our SQL Server ...
1
vote
1answer
338 views
How to use Git with ASP MVC Code-First Entity Framework [closed]
TLDR: What is an effective way to use Git to handle ASP MVC code-first EF? Which files need to be included for NuGet? Which files should be left out?
We have an ASP MVC code-first Entity Framework ...
2
votes
1answer
658 views
How to split up ASP MVC Project using Code-First Entity Framework
For an academic exercise, we have been tasked with creating a small website. We have already gathered the requirements and fleshed out the business domain to see the classes we are supposed to ...
1
vote
1answer
2k views
DbFirst vs Code First? what should I use if I rely on Stored procedures
This question is asked many times, and I always prefer code-first as I like to keep the logic in code.
But now I have a challenge to load screen under 5 seconds and very little time to do things.
I ...
6
votes
1answer
1k views
Is Code First with Migrations or SQL Server Data Tools a better fit?
I have been given a spec to create a new MVC4 website, it will not be too large a project at first but I suspect it will grow as the business gets new ideas for it.
Using .NET 4.5 ASP.NET MVC4 and EF ...
6
votes
1answer
346 views
Managing Entity Framework at Enterprise Projects (with hundred of tables)
I am using Entity Framework at my work and faced some problems.
Usually I hear about creating tiny Edmx´s files containing tables related to some Domain ie.: Help Desk Edmx, HR Edmx, etc. Instead of ...
3
votes
2answers
961 views
Bill of materials database design in EF codefirst?
I'm having trouble generating a proper database design for bill of materials in EF Code-first
I just need a general structure then ill add additional fields
So i need to have a Product that is ...
12
votes
7answers
5k views
Is CodeFirst intended for large scale applications?
I've been reading up on Entity Framework, in particular, EF 4.1 and following this link ( http://weblogs.asp.net/scottgu/archive/2010/07/16/code-first-development-with-entity-framework-4.aspx) and ...