Tagged Questions
Code-first is a software implementation approach that favors programming against an API over other approaches that may rely more heavily on visual tools or require the presence of some external source that is inspected to generate program behavior, structure, or data.
25
votes
4answers
11k views
How to configure ProviderManifestToken for EF Code First
I have a asp.net MVC3 project using EF Code First. For my unit testing I have been using SqlServerCE 4.0 and SqlExpress 2008. Both have worked perfectly with EF generating my database as expected.
...
20
votes
7answers
4k views
Unique Constraint in Entity Framework Code First
Question
Is it possible to define a unique constraint on a property using either the fluent syntax or an attribute? If not, what are the workarounds?
I have a user class with a primary key, but I ...
17
votes
4answers
5k views
ASP.NET MVC3 and Entity Framework Code first architecture
My previous question made me think again about layers, repository, dependency injection and architectural stuff like this.
My architecture now looks like this:
I am using EF code first, so I just ...
17
votes
7answers
7k views
Does Entity Framework Code First support stored procedures?
I've watched several presentations of EF Code First and haven't seen how EFCF works with stored procedures.
How can I declare a method that will use some sp? Can I pass an entity to a method that ...
16
votes
2answers
2k views
Entity Framework Code First - two Foreign Keys from same table
I've just started using EF code first, so I'm total beginner in this topic.
I wanted to create relations between Teams and Matches:
1 match = 2 teams (home, guest) and result. I thought It's easy to ...
15
votes
3answers
5k views
Using MySql with Entity Framework 4 and the Code-First Development CTP
I thought I'd experiment a bit with Scott Guthrie's latest post on code-first dev with Entity Framework 4. Instead of using Sql Server, I'm trying to use MySql. Here are the relevant parts of my ...
14
votes
1answer
884 views
MvcMiniProfiler on EF 4.1 Code-First project doesn't profile SQL
I have version 1.6 of the MvcMiniProfiler referenced (via Nuget) and have set everything up as described on the project homepage at http://code.google.com/p/mvc-mini-profiler/.
I have the following ...
14
votes
2answers
1k views
EF4 code-first: defining object relationships, foreign keys
< RANT_MODE >
EF code-first approach is meant to save lots of time but for the time being I've only seen toy examples and spent hours trying to understand how I can make it generate the db I want. ...
13
votes
6answers
4k views
Entity Framework CTP 4 - Code First Custom Database Initializer
I would like to implement a custom database initialization strategy so that I can generate the database schema and apply it to an EXISTING EMPTY SQL database using a supplied User ID and Password.
...
12
votes
1answer
1k views
Influencing foreign key column naming in EF code first (CTP5)
I have a POCO class that has two one-way unary relationships with another class, both classes share an ancestor. The names of the foreign keys in the generated schema do not reflect the property ...
12
votes
3answers
2k views
About Code First Database Evolution (aka Migrations)
I watched a screencast from MSDN BLOG that talks about database migration.
Is there anyone who knows when can we use this feature? It looks it doesn't work in CTP5 yet.
By the way, is there any way ...
12
votes
3answers
2k views
Force EF 4.1 Code First to See an Attached entity as Modified
All the examples I've found refer to a class called ObjectContext, which doesn't appear to exist in CTP5. I must stress at this point, CTP5 is my first exposure to the Entity Framework.
I have a ...
12
votes
1answer
10k views
SQL Express connection string for Entity Framework Code First
I am working in Visual Web Developer 2010 Express, and using the Entity Framework Code First CTP. I am able to do this with the new SQL CE but I am unable to find a connection string to work with SQL ...
12
votes
1answer
3k views
Where is EntityConfiguration in EF4 VS 2010 RTM?
I cannot find EntityConfiguration.
The same question for RC was here but I thought that it would make it to the RTM version. Is it there?
11
votes
5answers
655 views
Are there any good resources for developing Entity Framework 4 code-first?
I am trying to convert my model-first project to code-first, as I can see dealing with the models with the graphical designer will become hard. Unfortunately, with all my googling I can't find one ...
10
votes
2answers
490 views
Soft deletes, navigation properties in EF4 CTP5 POCO
Basically, I want to use soft deletes, but have the navgiation properties not show the soft deleted records. Are there any ways to intercept the navigation property queries on POCO objects in entity ...
10
votes
1answer
3k views
Entity Framework CTP5, code-first. Many to many with cascade delete
I have two entities (Customer and CustomerRole) and would like to declare many-to-many relationship between them. I can do using the following code:
modelBuilder.Entity<CustomerRole>()
...
10
votes
3answers
3k views
Entity Framework Code First naming conventions - back to plural table names?
I am just taking a crack at entity framework code first. Following their naming convention, we now have to name our tables plural to not have to intervene with the tool. I know the mappings can be ...
10
votes
1answer
1k views
Entity Framework 4 CTP5 Code First: how to share common column names in a Hierarchy Per Table mapping
I'm using Entity Framework 4 CTP5 code first approach and I have a Hierarchy Per Table mapping. Some of my classes in the hierarchy have properties in common.
public class BaseType
{
public int ...
9
votes
8answers
5k views
EF Code First: How do I specify that a property should generate a TEXT column rather than an nvarchar(4000)
I'm working with the Code First feature of Entity Framework and I'm trying to figure out how I can specify the column data types that should be created when the database is auto-generated.
I have a ...
9
votes
3answers
2k views
Entity Framework Code First - No Detach() method on DbContext
I'm wondering why there is no Detach method on the DbContext object like there is for ObjectContext. I can only assume this omission was intentional, but I have a hard time figuring out why. I need ...
9
votes
1answer
925 views
Entity Framework Code first development Resources and Documentation
I know EF4 is still in development but as a newcomer to the subject, I need a document, tutorial etc. with EF 4 code first approach. All the info is in EF 4 Team Blog but scattered around different ...
8
votes
1answer
2k views
Entity Framework 4.1 Code First approach to create many-to-many relation
I'm using the Silverlight 5 Beta SDK and the EntityFramework 4.1 in an Silverlight Application.
I'll try to create the two tables 'Author' and 'Book'. In SQL, there should be a third (join) table, ...
8
votes
2answers
7k views
Validation failed for one or more entities while saving changes to SQL Server Database
I want to save my Edit to Database and I am using Entity FrameWork Code-First in ASP.NET MVC 3 / C# but I am getting errors. In my Event class, I have DateTime and TimeSpan datatypes but in my ...
8
votes
1answer
779 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
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 ...
8
votes
1answer
5k views
How to have Many to Many Association in Entity Framework Code First
I am just getting started with EF and I watched some great tutorial videos. I am stuck with the following.
I have a class for a collection of files, I would like these to be tied to events and/or ...
8
votes
1answer
477 views
Entity Framework 4 - Code First not storing inherited table separate from base table
With EF Code First CTP 4 I've created a simple project. This project consists of 2 classes, one inherited from other.
I wish to store the data in separate tables, but the default of EF 4 is to ...
7
votes
2answers
116 views
EF code first: How are you meant to delete a row from an entity's Collection while following DDD?
So here's the scenario:
DDD states that you use a repository to get the aggregate root, then use that to add/remove to any collections it has.
Adding is simple, you simple call .Add(Item item) on ...
7
votes
3answers
2k views
EF Code First CTP 5 and SQL SErver 2008 R2
I can't seem to get the EF Code First to work with SQL Server 2008 R2. The error I am getting is "Invalid object name 'dbo.Movies'."
It is not creating the table automatically.
My connection string:
...
7
votes
4answers
3k views
The model backing the <Database> context has changed since the database was created
The error message :-
"The model backing the 'AddressBook' context has changed since the database was created. Either manually delete/update the database, or call Database.SetInitializer with an ...
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
1answer
693 views
Deploying database changes with EF 4.1
Does anyone have any best practices around deploying database changes in an EF 4.1 code-first solution? I know MS does not currently support database migrations for EF 4.1, but obviously people are ...
6
votes
3answers
1k views
EF4 code-first vs model-first with regards to model validation
I'm working on a one-man ASP.NET MVC 3 project (I have complete control over database schema and code), and I'm trying to decide between going database-first and POCO w/ my EF4 models, or if I should ...
6
votes
3answers
423 views
Using Entity Framework Code First CTP5, how do I create a primary key column that are INTs and are not identity columns
Using Entity Framework Code First CTP5, how do I create a primary key column that are INTs and are not identity columns
Preferably not using attributes.
6
votes
2answers
1k views
in entity framework code first, how to use KeyAttribute on multiple columns
I'm creating a POCO model to use with entity framework code first CTP5. I'm using the decoration to make a property map to a PK column. But how can I define a PK on more then one column, and ...
6
votes
3answers
2k views
Generate SQL CE database from EF Code-First DbContext class
I've defined a set of classes in the style of Entity Framework Code-First conventions and annotated the class properties with System.ComponentModel.DataAnnotations attributes.
Now I want to generate ...
6
votes
1answer
3k views
Entity Framework CTP5 - How to Call Stored Procedure?
This may be a simple answer, but i can't see how to execute a stored procedure with EF CTP5.
In Entity Framework 4.0, we did this:
ExecuteFunction("ContainerName.StoredProcName", new ...
6
votes
1answer
567 views
How do you actually perform relationships in Entity Framework 4 Code-First CTP 5?
I would like to have a short example on how do you actually perform relationships in Entity Framework 4 Code-First CTP 5 ?
Would love an example for these kind of relations :
* one-to-many
* ...
6
votes
3answers
411 views
Can I hide my ICollection<T> fields when I have a one-to-many mapping in EF4 code-only?
My domain classes that have one-to-many mappings generally take the following form (untested code):
public Customer Customer
{
// Public methods.
public Order AddOrder(Order order)
{
...
6
votes
1answer
2k views
Entity Framework Code First - Eager Loading not working as expected?
I have the following Entity Framework POCO classes:
public class Customer
{
public int Id {get;set;}
public string Name {get;set;}
public virtual ICollection<Order> Orders ...
6
votes
5answers
302 views
Whats better design/practice: Nullable property or 1 value property and 1 bool “has” property?
I'm working on an ASP.NET MVC app, designing the domain models, using (testing) the new EF Code First feature.
I have an Activity entity that may or may not have a Deadline, what is the best way to ...
5
votes
1answer
88 views
EF4 code first adding items not very clear to me
I don't understand why code first does not add a new item to the collection until after calling savechanges. I installed EF4.1 from NuGet (4.1.10331.0). I created the following example:
public class ...
5
votes
3answers
2k views
How can I get my database to seed using Entity Framework CodeFirst?
The database is created successfully (as are the tables) but is not seeded. I have spent several hours and read tons of articles but have not been able to get it. Any suggestions?
On a side note, is ...
5
votes
1answer
630 views
Using EF4 Code First: How can I change the Model without losing data
In my Global.asax I have the following line:
Database.SetInitializer<myDbSupport>
(new DropCreateDatabaseIfModelChanges<myDbSupport>());
If I don't have this, then when i change ...
5
votes
2answers
805 views
Deploy Entity Framework Code First
I guess I should have thought of this before I started my project but I have successfully built and tested a mini application using the code-first approach and I am ready to deploy it to a production ...
5
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 ...
5
votes
1answer
1k views
using Guid as PK with EF4 Code First
I have this class and table:
public class Foo
{
public Guid Id {get;set;}
public string Name {get;set;}
}
create table Foo
(
id uniqueidentifier primary KEY DEFAULT (newsequentialid()),
name ...
5
votes
1answer
281 views
How can we change naming convention of foreign keys in DB in EF Code First CTP5?
I am using Entity framework Code First CTP5 and I am trying to find a way to add a convention to change how foreign keys name are generated. Here is an example:
public class Lead
{
public int Id ...
5
votes
1answer
397 views
Entity Framework CTP5 (Code First) Modeling - lookup tables
Assume the following table structure:
Tables:
**Tasks**
taskID int PK
taskName varchar
**Resources**
resourceID int PK
resourceName varchar
**Assignments**
assignmentID int PK
taskID int FK
...