Tagged Questions
0
votes
4answers
45 views
Code-First equivalent in Ruby
I'm suuuuper lazy and don't like making migrations. I want to make models I'm going to use anyway and have something else figure out the migrations for me in ruby because .Net has spoiled me. Is there ...
0
votes
1answer
28 views
Code First database design issue - addresses
I have a POCO that represents a form a user fills out. There are about 10 different addresses on the form, so I separated them out into a separate address POCO. The problem is how to set up the ...
0
votes
0answers
20 views
Multiplicity constraint violated
I have two entites:
ClaimDetail (int ID, IList ClaimDetailStatus, other...)
ClaimDetailStatus (int ID, ClaimDetailClaimDetail, other...)
Configuration:
...
0
votes
1answer
13 views
Which assembly should I place the compiled views for entity framework code first when context is in a separate project from the domain classes
In desperate need of help.
I'm using entity framework code first and trying to follow Julie Lerman's suggestion about breaking out the context from the domain classes and I'm unable to get entity ...
1
vote
1answer
35 views
Filtering navigation properties in EF Code First
I'm using Code First in EF. Let's say I have two entities:
public class Farm
{
....
public virtual ICollection<Fruit> Fruits {get; set;}
}
public class Fruit
{
...
}
My ...
0
votes
2answers
18 views
Constraint error on delete in EntityFramework
I've got the following EF model:
public class Order
{
public string Id { get; set; }
public IList<OrderLine> Lines { get; set; }
...
}
public class OrderLine
{
public string ...
1
vote
1answer
40 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
38 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
44 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
36 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
1answer
22 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
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
42 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
37 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
1answer
43 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
21 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
24 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
1answer
44 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
51 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
1answer
35 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
60 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
62 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
29 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
50 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
1answer
52 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
72 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
24 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
76 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
43 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
25 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
152 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
115 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 ...
0
votes
0answers
44 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 ...
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 ...
0
votes
0answers
31 views
Code First Migration is not found
I've added new migration by typing
Add-Migration MyRockNRollMigration
and then I've put all necessary code into methods Up and Down. Next:
Update-Database (or even Update-Database -TargetMigration ...
0
votes
1answer
13 views
EF 5.0 Multiplicity Error On Simple Mapping
I have the following domain objects:
public class Person
{
public int Id {get; set;}
public int? FatherId {get; set;}
public int? MotherId {get; set;}
public int? HomeChurchId {get; ...
0
votes
0answers
84 views
entity framework add navigation property with non-primary key
Here's my simplified scenario.
I have 2 db tables
Customer
Order
Both tables have the expected Id primary keys (CustomerId and OrderId).
A Customer can have multiple orders.
In the DB, there is ...
0
votes
1answer
240 views
EF5 ASP.NET MVC 4 Linq query not returning anything & model property null -> Code First
Im having trouble linking my loaned items to my Library for each customer. It does it fine when it goes through the "AddToLibrary" method but when it comes to retreiving it, the medialibrary is empty ...
0
votes
1answer
73 views
Seeding a Database with Code First Entity Framework - Foreign key syntax
I am trying to find the correct syntax to seed a database with test data. I have a foreign key to my product table. It is the category. I have seeded the database with the values for categories, but ...
0
votes
1answer
74 views
Code First - ICollection Navigation Property With Foreign Key Throwing “An object with the same key already exists in the ObjectStateManager.”
I have a bit of a gotcha here. I have read through a number of SO threads and not found an answer.
I am using disconnected Repository Pattern for data access, making use of Code First EF.
POCOs:
...
2
votes
1answer
31 views
entity framework: own ondelete action
When any record deletes from some table (let us call it STORAGE_INFO) additional data from disk must be deleted.Could anyone provide a sample (if it possible yet) how to specify own DELETE action? ...
0
votes
1answer
59 views
many to many relationships to itself with additional fields in code first
I have this entity:
public class Content
{
public int Id { get; set; }
public string Title { get; set; }
public string Test { get; set; }
public DateTime Date { get; set; }
}
and I ...
1
vote
1answer
53 views
EF Doesn't Delete Records For Fluent API - Many To Many Relationship
I have 2 entities,
News
FileAttachment
I wanted to configure using code-first fluent API so that Each News can have 0,1 or more than 1 attachments.
here is what i'm using right now
public ...
1
vote
0answers
148 views
Entity Framework Code first missing foreign key entities in WebAPI project
I'm afraid that if I include my code this post will get too long and too complicated, so I'll try and explain my problem. If however you'd like to see some code illustrating this problem, I'll be ...
0
votes
3answers
105 views
Code first mapping for self-related xref table
I have read through several threads on StackOverflow and have not been able to figure this out. I am hoping someone can offer some advice. I have some POCO classes that look like this:
Person
{
int ...
1
vote
1answer
110 views
EF5 code-first Derived class foreign key/reference issue
I have the following:
public abstract class InputBase
{
public virtual ICollection<Data> Data { get; set; }
}
public class InputA: InputBase { }
public class InputB: InputBase { }
public ...
0
votes
1answer
164 views
Adding a child object to parent without explicit foreign key id fields with EF Code-First in ASP.Net MVC
I have two model classes - Parent and Child which are only linked via typed navigational properties.
public class Parent {
[Key]
[Required]
public int Id { get; set; }
[Required]
...
0
votes
1answer
50 views
Sequence contains no elements : self referencing code first
when I try to do self referencing with next entities
public class Folder
{
public int Id { get; set; }
public int? ParentFolderId { get; set; } // Added property
public string Name { ...


