Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

58
votes
3answers
14k views

EF 4.1 Code-first vs Model/Database-first

What are the pros & cons of using Entity Framework 4.1 Code-first over Model/Database-first with EDMX diagram? I'm trying to fully understand all the approaches to building data access layer ...
22
votes
0answers
690 views

Entity Framework migrations stopped detecting the POCO updates

I'm using Entity Framework and Entity Framework migrations to implement solution using code-first and automatic migrations. It used to work great but suddenly it stopped detecting the updates I make ...
17
votes
3answers
2k views

Using mvc-mini-profiler database profiling with Entity Framework Code First

I'm using the mvc-mini-profiler in my project built with ASP.Net MVC 3 and Entity Framework code-first. Everything works great until I attempt to add database profiling by wrapping the connection in ...
15
votes
1answer
2k views

What effect(s) can the virtual keyword have in Entity Framework 4.1 POCO Code First?

The virtual keyword has an effect when used on properties in EF Code First. Can someone describe all its ramifications in different situations? For instance, I know it can control lazy loading -- if ...
15
votes
3answers
4k views

Getting exact error type in from DbValidationException

I have the situation where I'm initializing my model in DatabaseInitializer() for EF 4.1 and get this annoying error "Validation failed for one or more entities. See 'EntityValidationErrors' property ...
14
votes
7answers
427 views

Entity Framework associations with multiple (separate) keys on view

I'm having problems setting up an Entity Framework 4 model. A Contact object is exposed in the database as an updateable view. Also due to the history of the database, this Contact view has two ...
14
votes
4answers
4k views

EF Model First or Code First Approach?

I know this question has been asked numerous times before as I’ve read quite a few posts on the topic about the pros and cons etc but I still can’t decide which approach is right for me. I’m very new ...
14
votes
1answer
2k views

EF POCO code only VS EF POCO with Entity Data Model

The ability to separate domain objects completely from any kind of persistance code makes systems much more extensible and maintainable. Testing is made much easier when business logic can be tested ...
13
votes
3answers
1k views

multi-step registration process issues in asp.net mvc (splitted viewmodels, single model)

I have a multi-step registration process, backed by a single object in domain layer, which have validation rules defined on properties. How Should I validate the domain object when the domain is ...
13
votes
2answers
5k views

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 a wrapper class for the enum. However, I would like to be able to define the enum and have the ...
13
votes
3answers
5k views

EF 4.1 Code First - map enum wrapper as complex type

I'm trying to build a generic solution to the problem of enums with EF 4.1. My solution is basically a generic version of How to fake enums in ef 4. The enum wrapper class works wonderfully in the ...
12
votes
1answer
3k views

StringLength vs MaxLength attributes ASP.NET MVC3 with EF 4.1 Code First

I'm new to ASP.NET MVC 3 and EF 4.1 and I have a question: what is the difference in behavior of [MaxLength] and [StringLength] attributes? As far as I can tell (with the exception that [MaxLength] ...
12
votes
2answers
4k views

Composite Key with EF 4.1 Code First

I am trying to figure out how to have a composite key using EF code First 4.1 RC. Currently, I am using the [Key] Data Annotation, but I am unable to specify more than one key. how would one specify ...
12
votes
1answer
722 views

Entity Framework Code First lazy loading non navigation properties

I'm using the entity framework code first CTP4. Is it possible to lazy load non navigation properties like you can in NH 3. A common example would be having a table containing a binary column. I ...
11
votes
1answer
3k views

Is RecreateDatabaseIfModelChanges available in WPF?

I'm trying out Entity Framework Code First. I can't seem to find the assembly/namespace to use for RecreateDatabaseIfModelChanges in WPF 4.0. Is this an ASP.NET-only feature? If not, what assembly ...
11
votes
2answers
3k views

EF Including Other Entities (Generic Repository pattern)

I am using the Generic Repository pattern on top of Entity Framework Code First. Everything was working fine until I needed to include more entities in a query. I got to include one entity ...
11
votes
3answers
2k views

Code First Specify Database Name?

How do I tell EF what to name the database and where to put it? If there is no connection string in the Web.Config, it tries to put it in the local SQLEXPRESS Server, but I want to put it out on a ...
10
votes
6answers
596 views

Entity Framework 4.1 The model backing the context has changed since the database was created, immediately after creating DB

I am working on a project which uses Entity Framework 4.1 for persisting our various objects to the database (code first). I am testing in Visual Studio with a local SQL Express DB, and our Jenkins ...
10
votes
2answers
2k views

How can I prevent EF “The context cannot be used while the model is being created” errors?

Looking at my Elmah error logs, I am seeing a few InvalidOperationExceptions from Entity Framework that deal with: The context cannot be used while the model is being created. This is with the ...
10
votes
1answer
1k views

What does WebActivator do?

This code was generated for me after added entity framework code-first for SQLCE using NuGet. They did no changes to any other file. The file (SQLCEEntityFramework.cs was created and placed in ...
10
votes
3answers
3k views

Entity Framework Code First - Why can't I update complex properties this way?

I'm working on a small sample project using Entity Framework 4.1 (code first). My classes look like this: public class Context : DbContext { public IDbSet<Person> People { get; set; } ...
10
votes
5answers
17k views

EF 4.1 Code First and Existing Database and .NET Membership

I have a database called ApplicationName_Development running on SQL Server 2008 R2 Developer edition on my development box. I added .NET membership tables to the database with no problem. When I ...
10
votes
1answer
1k views

How do I singularize my tables in EF Code First?

I prefer using singular nouns when naming my database tables. In EF code first however, the generated tables always are plural. My DbSets are pluralized which I believe is where EF is generating the ...
10
votes
3answers
3k views

How to store images using Entity Framework Code First CTP 5?

I'm just trying to figure out if there is a simple way to store and retrieve binary (file) data using EF Code First CTP 5? I would really like it to use the FILESTREAM type, but I'm really just ...
9
votes
1answer
3k views

Entity Framework 4 Code First - Prevent DB Drop/Create

I've written an ASP.Net MVC 3 application using the Code First paradigm whereby when I make a change to the model the Entity Framework automatically attempts to re-create the underlying SQL Server ...
9
votes
4answers
7k views

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: public class Race { public int RaceId { get; set; } public string RaceName { get; ...
8
votes
2answers
8k views

How Should I Declare Foreign Key Relationships Using Code First Entity Framework (4.1) in MVC3?

I have been searching for resources on how to declare foreign key relationships and other constraints using code first EF 4.1 without much luck. Basically I am building the data model in code and ...
8
votes
1answer
3k views

Entity framework code first delete with cascade

How do I set up my domain and the LINQ statement so I can delete a record from a database? public class Category { public int CategoryId { get; set; } public string Name { get; set; } ...
8
votes
2answers
3k views

Foreign keys in entity framework 4.1

I am working on Entity Framework 4.1 and using data annotations for foreign keys. I want to know how can we define one to many relationship between product and categories. I want to map category. ...
8
votes
1answer
2k views

EF 4.1, Code-First: Eager loading of cascading collections

If I have the following class model ... public class A { public int AId { get; set; } public ICollection<B> BCollection { get; set; } } public class B { public int BId { get; set; ...
8
votes
1answer
851 views

Entity Framework 4 - Mapping non-public properties with CTP5 (code first) in a persistence unaware context

I know the question already has a solution (eg. this question) but I really can't afford to attach the mapping logic in the same assembly where the domain (POCO classes) is. Is there any other way? ...
8
votes
3answers
2k views

How to use MemberShip provider with EF Code First?

I have models based on EF Code First and I want to use them with default MembershipProvider, but I don't know how to write model correctly, so it will don't erase all my data on recreating tables when ...
8
votes
2answers
1k views

EF4 Code-First causes InvalidOperationException

I'm having an issue when trying to run my project each time it builds. It seems the initializer runs, but when it comes to the first query - it dies with the following InvalidOperationException. This ...
7
votes
1answer
333 views

How to query Code First entities based on rowversion/timestamp value?

I've run into a case where something that worked fairly well with LINQ to SQL seems to be very obtuse (or maybe impossible) with the Entity Framework. Specifically, I've got an entity that includes a ...
7
votes
4answers
1k views

One DbContext per request in ASP.NET MVC (without IOC container)

Apologies if this has already been answered, but how do you guarantee one Entity Framework DbContext per request if you are not using an IOC container? (The answers I've come across so far deal with ...
7
votes
2answers
290 views

Entity Framework Code First 0 to 1 mapping

I want to create a map of these 2 models, how do I do this in code-first? public class Payment { public int PaymentId { get; set; } } public class PaymentBank { public int PaymentId { get; ...
7
votes
1answer
1k views

EF 4.1 Code First Issue After Upgrade

Okay, so I just upgraded thru NuGet to EF Code First 4.1 and now I get the following build error within my JobSiteContext.cs class: "The name 'DbDatabase' does not exist in the current context" Here ...
7
votes
2answers
1k views

EF 4.1 messing things up. Has FK naming strategy changed?

I've just installed the new Entity Framework 4.1 NuGet package, thus replacing the EFCodeFirst package as per NuGet intructions and this article of Scott Hanselman. Now, imagine the following model: ...
6
votes
1answer
121 views

Code first causing required relation to be optional?

public class Client { public Int32 ClientID { get; set; } public virtual ICollection<Inquiry> InquiryManufacturers { get; set; } public virtual ICollection<Product> Products { ...
6
votes
3answers
260 views

EF 4.1 Update 1 Code First + ASP.NET Membership Provider

I watched the “Creating immersive data experiences with Entity Framework “ video from this year’s BUILD conference and wanted to build out a simple application to test out the new features of EF. But, ...
6
votes
1answer
858 views

An overflow occurred while converting to datetime using EF4

I have a windows application working with a SQL Compact 4.0 database, using EF 4.1 and code-first approach. I cannot save an object to the database since I'm getting an exception, with inner exception ...
6
votes
2answers
2k views

Entity Framework 4.1 Code First - Mapping Columns

I'm having trouble trying to map my EF 4.1 Code First model to a database. Everything works fine when the database match the code exactly, but when I try and map when the columns differ in name then I ...
6
votes
2answers
3k views

Entity Framework 4.1 Code First: Get all Entities with a specific base class

I have a DbContext with set up different DbSet<T>s with all types that derive from the same base class: public class Foo : Entity { } public class Bar : Entity { } MyDbContext : DbContext { ...
6
votes
3answers
2k views

Entity Framework Code-first default data in database

How do I handle situations in which I need pre-existing data before the app is started or right after the database is generated. For example, I have a list of countries in which I'd like to load into ...
6
votes
2answers
2k views

How do I detach objects in Entity Framework Code First?

There is no Detach(object entity) on the DbContext. Do I have the ability to detach objects on EF code first?
6
votes
2answers
3k views

How to use Entity Framework 4.1 Code First to force a one to one relationship for a one to many relationship in the database

I am trying to change EF1 for EF4.1 code first in an application where the schema cannot be changed because it is used in SQL Server Replication. The schema is dreadfully poor and in many places ...
6
votes
1answer
3k views

Primary /Foreign Key in Entity Framework

I have created an entity class in my MVC 3 application. One of the attribute named RegistryId is primary key as well as foreign key. How can I make a column primary key as well as Foreign key ? I am ...
6
votes
3answers
721 views

How do I map entities with lazy-loaded properties (without causing them to load)?

I'm using EF 4.1 and code-first in an MVC project, and AutoMapper to map entities to view models. Prior to using code-first I was able to exclude navigation properties in order to prevent anything ...
6
votes
3answers
2k views

EF Code First 4.1 doesn't support nvarchar(max) at all?

I've spent decent amount of time on this problem and still can't figure out why EF team makes the life so hard using Code First. So here is some sample: My POCO: The way I want the thing to look ...
6
votes
1answer
3k views

Entity Framework 4.1Code First connecting to Sql Server 2005

I'm trying to use the Entity Framework 4.1 RC with a SQL Server 2005 instance. I've created an empty database and I'd like to persist my POCO objects to it. My POCO looks like: public class Cart { ...

1 2 3 4 5 29