EF Code-First is a way of using Microsoft's Entity Framework with POCO classes, as opposed to model-first or DB-first.

learn more… | top users | synonyms

0
votes
0answers
11 views

Primary key on subentity

I want to model the following with EF code first. Imagine a car race, where multiple car classes compete in their own races. A SubEvent is only for one CarClass, so each SubEvent is unique with it's ...
0
votes
1answer
21 views

EF 4.1 Code first - Many to Many - State unchanged

I have a many to many relationship, see my scenario explained here before continuing reading: EF 4.1 Code First: Many to Many Ok, now I can add the entries to the respective tables by doing the ...
1
vote
1answer
43 views

code first with diffrent entities

i have three model classes and three views , model is given below public class BASLPApplicationFormModel { [Key] ...
0
votes
1answer
22 views

Unique fields in table Fluent Api / Code First

I have been looking for a way to make, for example a username unique in the database with Fluent API / Code First. Is this even possible via either of these routes? Because I can't find any tutorial ...
0
votes
1answer
19 views

Entity Framework Code First and WebMatrix membership

I started a new project with EntityFramework 5.0 Code First with Automatic Migration and MVC4 with Simple Membership. And I modified the Configuration.cs with the following: protected ...
0
votes
1answer
32 views

EF 5 Code first Entities FirstOrDefault method returns null

This is an example based on Programming Code First EF. Please look at the below classes. When the PersonRepository calls in instantiated and InsertOrUpdate method is called Null value is returned. As ...
0
votes
2answers
21 views

Unique index with fluent api

I got a table Person, Order and PersonOrder. In the table PersonOrder i have a column PersonId and OrderId. How can I create a unique index between these columns with Fluent API? This was my try: ...
1
vote
2answers
44 views

EF 4.1 Code First: Many to Many

I have 2 entities, let's say A and B. Relation between them is many-to-many so I have another entity, let's say C. Columns for table A: -Id (PK) -> Type int generated by database -PropertyA1 ...
0
votes
1answer
23 views

EF5, code first exception ONLY on first database access: “FK_x…x' is not a constraint. Could not drop constraint”

This has been driving me crazy for days. I am using vs2012, EF5 code first, sql server 2012. This is on my development machine and I get the below exception when, and ONLY when, I hit the database ...
1
vote
0answers
28 views

Update optional FK to Required with Automatic Migrations

I have a table which has an optional FK to another table and want to change that FK to a required relationship. I have Automatic Migrations enabled and enabled destructive changes for this update. ...
0
votes
1answer
15 views

MVC 4 Add Controller Error Unable to retrieve metadata for my Model

I recently added a MVC4 Web Application to my solution and gave it a reference to my Common class library. The Common class library contains the models and context (EF Code First). When attempting to ...
1
vote
1answer
42 views

EF Code First one to one relationship

I have the following situation: public class User { public int ID { get; set; } public string Name { get; set; } // ... public virtual Address Address { get; set; } } public class ...
0
votes
1answer
17 views

Validation failed for one or more entities. See 'EntityValidationErrors' property for more details. Code First

I get this error: Validation failed for one or more entities. See 'EntityValidationErrors' property for more details. when i try to update the database with the Update-Database command in the ...
0
votes
1answer
13 views

Adding fields to webpages_Membership SimpleMembershipProvider

Is it possible to add fields/columns to webpages_Membership? [Table("webpages_Membership")] public class Membership { public Membership() { Roles = new List<Role>(); OAuthMemberships = ...
2
votes
2answers
71 views

Navigation properties and cascade on delete

I am using EF5 fluent-api to try to set up relationships/constraints between several tables, and I want these relationships to include cascade on delete and I think I'm missing something simple ...
0
votes
1answer
16 views

How to add a table that has a key off of the roles table in the SimpleMembership setup?

I have a web app setup with Simple Membership and Entity Framework Code first Migrations. I would like to create a POCO class that has a many-to-many relationship with the webpages_roles table in the ...
0
votes
1answer
40 views

Seeding data in Configuration.cs, creating duplicate data with AddOrUpdate

I am using Migrations in an MVC 4 EF5 application in Visual Studio 2012 Express with SQL Server 2012 Express, using Code First. I use the Seed method in configuration.cs, firstly creating a Tags ...
0
votes
2answers
43 views

Initializing/Adding fixed entries on table creation

I am using Entity Framework code first, and I have two tables that need to be initialized with fixed entries just on table creation. For example: Columns for table A: -Id -Name Columns for table ...
1
vote
1answer
89 views

Linq Include helper function for f# style pipelining

I want to eagerly load some records from and their relations from the database something like this: let getEmails() = let emails = (query { for q in entities.QueueItems do ...
0
votes
0answers
38 views

Custom foreign key relationship using Fluent API

I am working on a project using VS 2012 and EF 5.0. I am having two tables: public class AttendanceRecord { public int Id { get; set; } public DateTime RecordedDate { get; set; } ...
0
votes
1answer
17 views

EF5 - Itterate through the column name with OnModelCreating

I'm using EF5 and I want to camelCase my column names. I want to do something like this in my OnModelCreating(DbModelBuilder modelBuilder) method ... foreach(var prop in ...
0
votes
0answers
19 views

EF Code First Get FK related Values without Entity

I have following Vehicle entity class Vehicle { public int Id {get; set;} public string PlatNo {get; set;} public int VehicleTypeId {get; set;} } VehicleTypeId property is a FK of ...
0
votes
0answers
9 views

Add-Migration error: Schema specified is not valid

I can not create a new migration Add-Migration Testing Package version Microsoft.AspNet.WebApi -> 5.0.0-beta1-130515 Microsoft.AspNet.WebApi.Client -> 5.0.0-beta1-130515 ...
1
vote
1answer
31 views

EF5 code first with ASP.NET Web API: Update entity with many-to-many relationship

I'm trying to update a Customer in my database using ASP.NET Web API and Entity Framework 5 code-first, but it's not working. My entities look like this: public class CustomerModel { public int ...
0
votes
0answers
13 views

Code First Many-Many Error (may cause cycles or multiple cascade paths)

I have looked at so many questions and tried every solution available but it seems not to work with my specific scenario. I am trying to add a code-first many to many relationship for the below ...
-1
votes
1answer
26 views

Entity Frame work Coded first - Create Readonly EDMX Model

I am just starting out with EF Code-first: If I create a read-only EDMX file from my code first can I save this readonly file as a stand-alone file and then include the resultant file in my project ...
0
votes
1answer
16 views

EF 5 - Get Migrations Scaffold to live in a seperate project

I don't particularly want the Entity Framework migrations scaffold code in my Data Access project. I've got a Console app that I manage database scripts with - so I'd like it live in here: ...
0
votes
1answer
21 views

EF Pre-generated views and multiple Contexts

In our environment we have more 200 tables and we are using EF 5.0 Code First to manage the database. Our software allows the users to modify the Entities and add Custom Fields to them. Out of 200 ...
0
votes
0answers
36 views

EF should relation properties be virtual? [duplicate]

I see some people who put the relation properties virtual and some other not. Could someone explain the difference? [Table("Prospects")] public class Prospect { [Key] public int ID { get; ...
0
votes
0answers
8 views

Invalid column name on OData result from inheritance type

Code Model I have a base and a specific class public class Entidade : EntityNome, IAuditavel { public DateTime CriadoAs { get; set; } public virtual Usuario CriadoPor { get; set; } ...
0
votes
1answer
27 views

EntityFramework CodeFirst Mapping to have camel case in the database

I've just started a new company who are happy for me to use CodeFirst - but want the database fields camel cased. I'm currently writing a lot of this kind of stuff ... [Column("active")] ...
0
votes
2answers
35 views

One to many navigation property is null in code first EF5

What is the proper way of defining related collections in code first Entity Framework 5? I was following this summary but something is not working. I have the following model: class Order { public ...
2
votes
2answers
21 views

Change table schema on middle table generated by Entity Framework

I have got model with M:N relation like this: [Table("Messages", Schema = "public")] public class Message { public int Id { get; set; } public virtual IList<Phone> Phones{ get; set; } ...
0
votes
3answers
42 views

Where to put Seed data using EF5 code-first migrations

I'm starting out with EF and MVC, and following different tutorials provide different confusing ideas on where is the correct place to put dummy test data in my database. So I've made some POCO ...
0
votes
1answer
51 views

Custom simple membership provider adding row

I have a custom SimpleMembershipProvider and i have defined all tables that the SimpleMembershipProvider requires, like webpages_Membership: [Table("webpages_Membership")] public class Membership { ...
0
votes
3answers
40 views

Designing classes in code first Entity Framework

I am building a online shopping web application. I have four entities : Customers CusomerId Name Address Phone Category CategoryId Category Product ProductId Name Price Category Order ...
0
votes
1answer
15 views

Which method in EF5 is in charge of creating database

I have a couple of questions: In EF5 code first API which method is in charge of checks if database exits, and if it's not the case which method creates DataBase? if i use EF code first i my DAL ...
1
vote
2answers
53 views

Database initialization strategy Code First

I have an ASP.NET-MVC application with Migration enabled and SimpleMemberShipProvider configured to use my database with some extra tables/fields. My question is, where to put my database ...
-3
votes
1answer
37 views

When we use Entity Framework, how to use triggers?

When we use Entity Framework, how do we use triggers? When I call .SaveChanges(), the following error occurs An error occurred while updating the entries. See the inner exception for details. ...
-3
votes
0answers
31 views

How to implement relationships in code-first approach [closed]

I'm having ALOT of difficult to figure out how to implement each type of relationship in code-first approach. Can you help me to understand how to implement them? Please, give an implementation ...
0
votes
0answers
36 views

Custom EditorFor and ICollection issue

I'm doing this using (var db = new MyContext()) { var g = new MyGroup { Caracteristicas = db.Caracteristicas.ToList() }; return View(g); } and getting this exception when ...
0
votes
0answers
20 views

Error when running T4 template to pregenerate views for EF5 CodeFirst

I just added the "EF Code First Pre-generated Views Generate for C#" to my EF 5 Code first project so I can pre-generate views and decrease inital load time of my site. I made sure to name it ...
0
votes
1answer
30 views

Seeding users with membership provider

I'm trying to seed some users with the SimpleMembershipProvider. I have added a few columns in the UserProfile table, like a mobile number. When i try to add a user with a mobile number, the compiler ...
1
vote
1answer
55 views

How to define Many-to-Many relationship through Fluent API Entity Framework?

Below is my model: public class TMUrl { //many other properties //only property with type Keyword public List<Keyword> Keywords{get;set;} } public class Keyword { //many other ...
0
votes
1answer
49 views

In EF Code First, how do I setup an one-to-many property?

So I have the following EF models: [Table("Site")] public class Store{ [Key] [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)] public int ID { get; set; } ...
0
votes
2answers
56 views

code first one-to-one enable cascade delete

I have one to one relationship with foreign keys but the Cascade Delete is not enabled for some reason. The sample code is below. public class AppRegistration { public int AppRegistrationId { ...
0
votes
0answers
26 views

Why my Entity Framework Code First Entities are being detached?

I am using the code first (EF5) approach to create my domain classes. I perform a query to pull a Parent record w/ a collection of child's. I need to edit my parent and perform CRUD operations on ...
0
votes
1answer
21 views

Different schema name on correlation table - Entity Framework

Is it possible to have a different schema name on correlation tabels than [dbo]? I'm using code first. Example: ApplicationRole.cs public class ApplicationRole { public Guid ApplicationRoleId ...
1
vote
0answers
49 views

No tables are created after setting WillCascadeOnDelete on true

We are making a project in ASP MVC4, and are using code-first. This means that our database is automaticly created from our code after running it. But i noticed that optional relationships in the ...
0
votes
1answer
41 views

EF 5 Code First, multiple parent child with cascade delete?

I have the following model: public class Parent1 { public int Id {get;set;} public List<Contact> Contacts {get;set;} } public class Parent2 { public int Id {get;set;} public ...

1 2 3 4 5 70