Top "Entity-framework-4.1" questions

This tag is for the ADO.

EF ICollection Vs List Vs IEnumerable Vs IQueryable

so, my EF model has relationships and according to what I have seen in examples, those relationships should be done …

c# entity-framework entity-framework-4 entity-framework-4.1
Repository Pattern with Entity Framework 4.1 and Parent/Child Relationships

I still have some confusion with the Repository Pattern. The primary reason why I want to use this pattern is …

c# domain-driven-design entity-framework-4.1 repository-pattern aggregateroot
Entity Framework CodeFirst many to many relationship with additional information

I have the following model : class Contract { string ContractID{get;set;} ICollection<Part> Parts{get;set;} } class Part { …

c# .net entity-framework ef-code-first entity-framework-4.1
Why does Entity Framework return null List<> instead of empty ones?

I'm pretty new in the ASP .NET MVC world. Maybe, that's the reason I can't explain to myself the cause …

c# entity-framework entity-framework-4.1 ef-code-first nullreferenceexception
ASP.NET MVC 3 Site Loading Is Extremely Slow

I really don't know where to begin with this question, but the site I'm working on at times has some …

performance asp.net-mvc-3 entity-framework-4.1 ninject
Tables without a clustered index are not supported in this version of SQL Server

I am working on vs 2010 and EF 4.1 with SQL server database. Below mentioned code works fine with local SQL server …

asp.net-mvc-3 c#-4.0 azure entity-framework-4.1 azure-sql-database
EF 4.1 - Model Relationships

I'm trying to create a quick ASP.NET MVC 3 application using the RC version of EF 4.1. I have two models: …

asp.net-mvc-3 entity-framework-4 entity-relationship ef-code-first entity-framework-4.1
Code First vs. Database First

I created an Entity Framework model based on an existing database, then generated the POCO entities from the model. The …

c# entity-framework entity-framework-4.1 code-first database-first
Updating database schema with Entity Framework Code First

Entity Framework Code First is a great framework for developing new projects. But what about extending an existing database? For …

entity-framework ef-code-first database-schema entity-framework-4.1
Enums with EF code-first - standard method to seeding DB and then using?

Is there a standard way to using Enums in EF code-first? There seems to be some examples making use of …

entity-framework-4.1 ef-code-first