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.

learn more… | top users | synonyms (2)

0
votes
1answer
21 views

Code first foreign keys

Within my view, I need to return FullName for every Initiator and Owner. To do so, should both Initiator and Owner be foreign keys of EmployeeID? I'm not sure how to make both Initiator and Owner ...
1
vote
1answer
41 views

Code First load nested without recursion

I have a Sheet that can contain many Sections. Each Section can also contain many Sections. I would like to load the Sheet, its Sections, and all of the sub Sections with as few round trips to the ...
1
vote
1answer
23 views

EF 4.1 code first with one-to-many relationship creates duplicate foreign keys

I am using entity framework code first. I have 2 entities (Users and Profile) and the relationship between them is one-to-many, that is, one user can only have one profile, but one profile can be ...
0
votes
2answers
30 views

How to remove child one to many related records in EF code first database?

Well, I have similar one-to-many related model: public class Parent { public int Id { get; set; } public string Name { get; set; } public ICollection<Child> Children ...
0
votes
2answers
34 views

Entity framework ASP MVC 4, Referencing the wrong table

I am using the code first approach with a local database (localdb\11.0v) in ASP MVC 4. I have created my entity public class Service { public int ServiceID { get; set; } public ...
0
votes
1answer
33 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
41 views

code first get values from foreign key constraint

I've started a sample project with code first and get NULL value from entity which has a foreign key constraint. my model: public class CustomerItem { [Key] public int Id { get; set; } ...
0
votes
1answer
21 views

EF4 Generate Database from model creates empty edmx sql script

I am playing around with Code first, have created my entities and am now trying to generate a database from the model. I have gone through the wizard, successfully connected to the server, selected ...
0
votes
1answer
24 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 ...
0
votes
0answers
14 views

Entity Framework CodeFirst mapping to a database with different names returns empty context

I have an english based application including context, entities, services and so on. The Database used to be in English but now we have to translate it to Spanish. I used the .ToTable() and ...
0
votes
1answer
64 views

Code first database creation

I have two entities. User and UserContacts. I have created two classes. User public class PUser { public int PUserId { get; set; } public virtual UserContact UserContact { get; set; } } ...
1
vote
1answer
41 views

Code First Empty Navigation Property

I have a really weird issue going on that I can't seem to find the answer on google for. I currently have the following Code First/DB structure: public class Prospect { [Key] public int ...
0
votes
2answers
35 views

Entity Framework: search for database entries with null fields

I have the following Model: public class FactCache { public int ID { get; set; } public DateTime MonthDate { get; set; } public string AttributeKey { get; set; } public decimal ...
0
votes
3answers
43 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
18 views

What does PluralizingEntitySetNameConvention do?

I'm learning code first and I'm going over the default conventions (http://msdn.microsoft.com/en-us/library/gg696316(v=vs.103).aspx), and I'm wondering what PluralizingEntitySetNameConvention does. I ...
-3
votes
0answers
29 views

Replace code first code ASP.Net MVC with Sql Server [closed]

I have created application in mvc using CF and followed below architecture. http://code.msdn.microsoft.com/ASPNET-MVC-Application-b01a9fe8 But now, how can I move my database (.sdf) with sql ...
0
votes
1answer
39 views

Entity Framework Code first foreign key mapping

I have 2 entities: Claim (ID, other primirives, one more relation) - Claims table ClaimDetail (ID, ClaimID, other primitives, relations) - ClaimDetails table Mapping: ...
0
votes
1answer
17 views

Updating entity framework entity with many to many relationship

I have (2) entities, they are as follows: [Table("User")] public class User { [Key] [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)] public int UserId { get; set; } ...
0
votes
0answers
19 views

Entity Framework symmetrical self-referencing many-to-many relationship

Using Entity Framework Code First mappings, how would I set up a model with the following properties? There is a table of Items Each Item has a "SimilarTo" relationship to any number of other Items. ...
0
votes
0answers
52 views

EF5 Code First, Repository Pattern using Generic Templates | POCOS using Generic Templates?

I am creating a library that uses EF5 code first (TPH), repository pattern and unit of work. Every example I've see so far that maps out the interfaces for the repository, and codes the POCOs without ...
0
votes
1answer
41 views

Code First Entity Framework Adding Object

i am working with Code First Entity Framework and i am stucked at a place where i need to add a list of feature's to one object. example : i have the following Aggregates. 1) Plan.cs 2) Feature.cs ...
0
votes
1answer
42 views

Entity Framework code first: POCO's inheritance

I have an issue when defining some POCO objects (entities) in entity framework code first 4. I have a main entity, let's say Entity_A, which has only a property, only the ID (primary key). The rest of ...
0
votes
0answers
15 views

Entity Framework one to many with 3 tables

I have three models that have a one to many relationship between the first and second, and second and third and would like to set up a one to many between the first and third model. This is used to ...
0
votes
1answer
32 views

Entity Framework and many-to-many relation with explicit link table

I'm using code-first Entity Framework and I know you can easily create a many-to-many relation between ObjectA and ObjectB by adding an ICollection to each; EF will automatically create a link table ...
1
vote
2answers
57 views

Entity Code First User, Role, UserRole tables

I am using Entity Code First to create a database and tables to store Users, Roles and the UserRoles. My classes are as follows - public class User { public int UserId { get; set; } ...
5
votes
1answer
61 views

How to make foreign key from Membership's users table to custom table in code first approach in MVC 4?

I am creating a MVC 4 application in Code First approach and using DefaultMembershipProvider and DefaultRoleProvider, but I am getting a problem in making foreign key of membership's users table to ...
0
votes
0answers
14 views

Entity Framwork “TPH” and “one to many” questions

all the questions are just that: how to load children's list value, cause mine are null. i am EF beginner, and i have a question: i use EF code first and i have 4 class with the relationship ...
0
votes
1answer
28 views

EntityFramework - Use Entities in Modules without access to the Database

I'm currently creating an application which is highly modular (using the Prism-Framework) and accesses a database via the EntityFramework implemented in CodeFirst. My goal is to seperate the actual ...
0
votes
1answer
45 views

Is it possible to read EF Code First Connection String from Azure Role Environment

I have an Azure Worker Role which is using Entity Framework Code First (5.0) to talk to a SQL Azure database. Currently I have the connection string in the app.config of the worker role however I ...
0
votes
0answers
78 views

Where is the right place of the Data Access Layer Layer in asp.net mvc 4 Code First based app

I am following O'Reilly's `Programming ASP.NET MVC 4 Developing Real-World Web Applications with ASP.NET MVC and I've reached the point where I have to create my first real entity. This is the code ...
0
votes
1answer
50 views

Localized Entities Using EF-Code-First

I’m using MVC with CodeFirst to create a multi-lingual website, and I’ve followed this tutorial ...
0
votes
1answer
67 views

Entity Framework Code First - Invalid column name Discriminator

Two Classes in codefirst public partial class BaseEntity { public int ID { get; set; } } public partial class Fund : BaseEntity { public int Name { get; set; } } public partial class ...
0
votes
1answer
65 views

EF 5 Code First One to Many Navigation Property Null Until Context is Refreshed

I've seen this question asked a few times but nothing solves my problem. I've created the most simple version I can: public class Order { public int OrderId { get; set; } public virtual ...
0
votes
1answer
69 views

EF5 Code First Migration - Creating database and migration error

I recently took a CF5 project done by another collegue, and I would like to add a new feature but I've some errors. So, I would like to create a auto creation and auto migration system for this ...
0
votes
2answers
149 views

Breeze.js with asp.net web api odata and code first

I'm currently working on a proof of concept relating these technologies. I've basically implemented what is suggested in this article, with the exception of using EF code first. Consuming an ASP.NET ...
0
votes
1answer
23 views

How to add complex property EF Code First

I have three simple classes public class Asset { public int ID {get;set;} public virtual Category {get;set;} } public class Category { public int ID {get;set;} } public class ...
1
vote
1answer
60 views

Specified store provider cannot be found in the configuration

When I publish my ASP.NET MVC 4, EF 5.0, Code-First Project to test or production environment following exception occurs: (error 0175: The specified store provider cannot be found in the ...
0
votes
0answers
37 views

Combine EF Power Tools and .edmx to generate CodeFirst Class And DB

I use this step for generating CodeFirst Classes in my MVC project: 1) run my app with membership support and call MVC Action that use membership to create membership default tables ...
0
votes
0answers
48 views

Entity framework Code First - SqlQuery

I want to use SqlQuery to bring data from a store procedure from an entity what is not in the database. The code bellow: public List<TreeNode> GetTreeNodes(string userName) { var ...
0
votes
0answers
24 views

DbUpdateConcurrencyException has not been raised

I noticed some strange behavior of DbContext class. I have 2 ways of updating my model, both of them change State of my model to Modified, but in the first case DbUpdateConcurrencyException is raised ...
0
votes
0answers
133 views

Entity Framework Code First Migration: Best way to update database with Changes in the model

I am working with Code First Migration based in code and I would like know what is the best way to update my database schema using the changes in the model. In our application we are planning have ...
0
votes
1answer
23 views

DynamicData.EFCodeFirstProvider with EF migrations issue on porting EF 4.3.1 to EF 5.0

I'm using DynamicData.EFCodeFirst version 0.5.1.0 at the begining I was using the EF version 4.3, and used Enable-Migrations in Package manager console and all was fine. But after I decided to move to ...
0
votes
2answers
104 views

EF Code First Migrations: SetInitializer and Initialize

I am working on Code First Migration and Im trying work with code based migrations (Automatedmigration=false). What I can to do now it's: -Run Enable Migrations -Add migration Initial -Run ...
1
vote
0answers
48 views

Entity Framework 5 Error Generating Table with model having using 2 Keys

Im Trying to generate Database using EF5 Code First. This is my Domain Class for SmartCodeRights table. public class SmartCodeRight { [Key, Column(Order = 1)] public long UserId { ...
0
votes
0answers
40 views

Entity Framework Code First + Fluent Api impossible to map Optional - Many to a link table?

I have to map an optional - many with code first and fluent api to a link table, which presents: IdLeft(PK, FK, not null) IdRight(PK, FK, not null) But with fluent api to sperate a part of left ...
1
vote
0answers
41 views

MVC 3, code-first, and sample data

I'm using code-first, and am trying to generate some sample data, but am stuck. var ts = new List<VehicleType> { new VehicleType { TypeName = "Car" }, new ...
0
votes
1answer
32 views

How do I specifiy maximum field length using .net framework 4.0 and EF Code First?

I am writting a winforms application. I had the domain classes nicely working with Code First and .Net Framework 4.5 however I need to switch to .Net Framework 4.0 so that the application will run on ...
1
vote
0answers
44 views

MVC Code First Entity Frame Work reference same oject twice from master object

Have a code first MVC4 model that requires foreign key look up to the same table. i.e My Project table has two columns (BaseFiscalId and IMITApprovalCycleId) that reference the same table i.e. ...
0
votes
1answer
77 views

EF Code First and Linq to Entities, How to populate nested objects in one go?

I know there are similar problems out there, this one is almost the same How to create and populate a nested ViewModel well but it does not solve my problem. Im using EF Code First and LINQ to ...
0
votes
1answer
38 views

Code First Constraint Violation

I am having trouble deleting objects in an EF Code First (new DB) without violating a foreign key constraint. I have three classes, Job, Ticket, and Notes. Job has 0,1 Tickets and many Notes. I ...

1 2 3 4 5 24