Tagged Questions
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
2answers
58 views
Entity Framework related objects insertion with stored procedure and auto_increment field
I have a problem inserting a related row through Entity Framework 5. I'm using it with RIA Services and .NET Framework version 4.5. The database system is MySQL 5.6. The connector version is 6.6.5.
...
1
vote
0answers
81 views
DBContext not updating foreign key on update
We are migrating over from EF4 to EF5 and part of this is the move from POCO Generator created classes to the DBContext generated classes. However, we are now seeing issues where the foreign keys are ...
0
votes
1answer
37 views
entity framework - navigation property does not load
I have the following relation
public partial class SharedResource : DomainEntity
{
public System.Guid Id { get; set; }
public System.Guid VersionId { get; set; }
public virtual ...
-1
votes
1answer
53 views
Fluent API, define a primary key as foreign key
I have this two models :
//Primary AND Foreign key 1
public int UserID {get; set;}
//Primary AND Foreign key 2
public int ProductID {get; set;}
I don't know how to set this two column as primary ...
0
votes
1answer
72 views
How to create a navigation property with a key that is not the the primary key of the 2nd object?
In EF5, using a code first approach and fluent API, how can create a navigation property (many to 1) based on a key that is not the primary key of the other table?
My database model is as such, and I ...
0
votes
1answer
47 views
Mapping many-to-many foreign keys without navigation properties
Is it possible to map a list of foreign keys instead of a navigation property using EF 5.0 Code First?
Imagine that I have a Car entity and a Driver entity. A driver can drive multiple cars and a car ...
0
votes
1answer
52 views
Entity Framework mapping a Navigation Property as Scalar property
Im trying to generate a model from a database. The model is being generated but all the foreign key fields (that should be only navigation properties) are being mapped as Navigation Property and a ...
0
votes
2answers
148 views
C# MVC EF - Set a foreign key to NULL?
I am trying to set a foreign key to "Null".. Using the SQL Management Studio it works fine, but trying it using C#, I am getting a exception:
Exception:
Value cannot be null. Parameter name: ...
1
vote
0answers
165 views
Upgrade EDMX to EF 4.0 - update model to include foreign key columns
Upgrading my ASP.NET 3.5 / Entity Framework 1.0 solution to .NET 4.0, I would like to take advantage of the foreign key columns that can be part of your EDMX model as of EF 4.0.
I tried just ...
0
votes
1answer
79 views
Creating entity relationship with renamed fields and non-primary key in primary table
The following are two partial tables in which I am trying to define a foreign key relationship.
public class Form
{
[Key, Column("FormID")]
public System.Guid FormGUID { get; set; }
...
0
votes
1answer
91 views
EF Code First didn't create foreign key when it should have
Currently i'm following Programming Entity Framework: Code First, where the author created these model classes :
namespace Model
{
public class Destination
{
public int DestinationID ...
0
votes
1answer
22 views
Mapping a foreign key with a different name
I have the following model:
public class Task
{
public int Id { get; set; }
public int UseraccountId { get; set; }
public virtual Useraccount Useraccount { get; set; }
}
The ...
1
vote
1answer
140 views
Foreign Key & Entity Framework Relational Design
I have two tables in my SQL database currently in question. The first, MasterPartsList is just the entry point of all the partnumbers in our system, given by the propertypn. The second table, ...
1
vote
1answer
77 views
Error when saving ObjectContext after replacing Parent item and linking Child item to it
In my application, the interface allows the user to create and delete entities in an Entity Framework model. All changes are added to the ObjectContext, and saved only when the user selects "Save".
...
0
votes
1answer
160 views
EF Code First foreign key definition / left join / navigation properties?
Let's say I have 3 tables:
[Table("Comments")]
public class Comment {
[Key]
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
...
1
vote
1answer
74 views
Error: Entities in 'DataBase' participate in the 'FK_MSCourse_Language' relationship. 0 related 'Language' were found. 1 'Language' is expected
Hi i try to get some Date from my Database but it wont work and i really have no Idea why.
I get following Error:
Error: Entities in 'DataBase' participate in the 'FK_MSCourse_Language' ...
0
votes
1answer
144 views
Does Entity Framework Update Foreign Key Values Automatically?
This is a very simple issue, and I haven't been able to find a satisfactory answer. My setup is simple, two tables with a Foreign Key to connect them. I'm able to successfully update both tables wtih ...
0
votes
1answer
49 views
EF Code First - linking entity to same dependent entity - delete cascade error
I have these two entities:
public class Profile
{
public int ProfileID { get; set; }
public ICollection<Friend> Friends { get; set; }
}
public class Friend : BaseEntity
{
public ...
1
vote
1answer
118 views
I get a null value for a non-nullable foreign key with the entity framework
What am I doing wrong? I mapped a SQL server database with the wizard. It's a rather complex database, but for this example we can assume three tables: REPORTROWS, REPORTCOLUMNS and REPORTNAMES. ...
0
votes
1answer
210 views
CodeFirst Duplicate Foreign Keys Generated - EntityFramework
Ok you can see my simplified model below. If I leave out the mappings I get all sorts of duplicate keys generated in the database in my base BusinessCardActions table everytime I add a new collection ...
0
votes
1answer
85 views
Why can't I access the value(s) of foreign key field(s) when using Entity Framework?
I have a user table in my database that looks like this:
public class tblUser{
public int id{ get; set; }
public string name{ get; set; }
public int? customer_id{ get; set; }
}
There is ...
1
vote
0answers
76 views
Cascading deletes on *Derived Entities*
OK, check out the following simple object model:
Entity ConcreteThingy derives from AbstractThingy.
Entity Owner can have at most 1 ConcreteThingy.
No two Owners can have the same ConcreteThingy.
...
2
votes
1answer
60 views
What is wrong with this many-to-many relationship in EF code-first?
I have these schema in my database:
Tb1: { Id:int , NameTb1:varchar(50) }
Tb2: { Id:int , NameTb2:varchar(50) }
Tb1Tb2 { Tb1Id:int , Tb2Id:int }
Obviously Tb1Tb2 is a relationship table and I want ...
0
votes
1answer
96 views
EF Code First and modelbuilder - how to make a one-to-one relationship with the same ID?
I have two classes:
public class Account
{
public int Id {get;set;}
public PayoffData PayoffData {get;set;}
}
public class PayoffData
{
public int Id {get;set;}
//some other fields
}
...
3
votes
2answers
366 views
Entity Framework 5: Code-First Cyclical Relationship Issues
I understand why EF does not allow "cyclical references" in the PK/FK relationships. I am looking for advice on how to alter my model to make the following scenario work.
Scenario
Three entities: ...
0
votes
1answer
120 views
Composite Key Not Loading All Related Entities
I've been trying various solutions to this for a couple of hours now and I just cannot figure it out. I'm using a custom membership provider in a system so have a roles table defined using code first ...
0
votes
3answers
250 views
Getting INSERT statement conflicted with the FOREIGN KEY on SaveChanges()
I am new to working with the Entity Framework with SQL Server and I am having trouble inserting a record into my database. The problem is with 3 tables that are linked with primary keys and a foreign ...
0
votes
1answer
254 views
inserting data into tables with foreign keys
I have 2 tables in ms sql server 2008 R2, one of which has foreign key relation to the other
pretty simple:
tableA
prefix nchar(10)
value nchar(50)
tableB
prefix nchar(10)
value nchar(50)
ALTER ...
1
vote
1answer
516 views
Entity Framework migration could not create foreign key constraint
I had 2 tables:
public class Work
{
public int WorkId { get; set; }
(...)
}
public class Check
{
public int CheckId { get; set; }
(...)
}
Then I wanted to add a many to many ...
0
votes
1answer
1k views
Specify ON DELETE NO ACTION in ASP.NET MVC 4 C# Code First
How do I specify ON DELETE NO ACTION Foreign Key Constraint in my model designs?
At present, I have:
public class Status
{
[Required]
public int StatusId { get; set; }
[Required]
...
2
votes
1answer
227 views
EF Code First - Multiple Properties Pointing to Another Table
I have a pair of simple classes generating a database in Code First in EF 4.1:
public class User
{
public int UserId { get; set; }
public string UserName { get; set; }
}
public class ...
1
vote
1answer
92 views
Can I define an identifying relationship with an artificial PK
I have several models in my project which really should be using identifying relationships, but I have them setup with unique auto-increment primary keys for speed and simplicity reasons. For ...
2
votes
2answers
174 views
MySQL foreign key connecting to two tables with a constant?
We have a MySQL database with employees, companies and addresses tables.
The setup works like this: employees and companies each have an id. Since they are in two different tables, an employee can ...
1
vote
1answer
473 views
How to make an Entity Framework property NOT NULL, but not required in form submission
I'm using Entity Framework 4.1 with a code-first model. A common pattern is that many objects reference the user who owns them, eg.
public class Item
{
public User Owner { get; set; }
}
This ...
0
votes
1answer
453 views
SQL Server 2012 FK doesn't work in Entity Framework
Had a super weird issue using Entity Framework (4.x, 5) with SQL Server 2012.
To illustrate I made two tables with very simple 1-to-many relationship
PK. [User].[UserId]
FK. [Order].[UserId]
...
0
votes
2answers
286 views
Defining an FK relationship in MVC using .EDMX
I'm just ramping up on MVC 4 and have encountered an error in my application that I need some assistance in fixing.
I have an Author & Book table. The Author table is the parent, and you can have ...
0
votes
1answer
83 views
EF Code First Fake Foreign Keys
Let's say we have this
class A
{
[Key]
public int Id { get; set; }
public string X { get; set; }
public string Y { get; set; }
public B B;
}
class B
{
[Key]
public int Id ...
1
vote
1answer
518 views
Entity Framework Maintaining Foreign Key Relationships
I have a Single Location Table that has multiple foreign key relationships in it. It has foreign keys to a state table, a city table, a country table, and a user table. Now I have the table model ...
0
votes
2answers
39 views
EF 4: Basic feature missing?
Imagine I have this class
public class Case
{
[Key]
[DataMember]
public int CaseId { get; set; }
[DataMember]
public string Title { get; set; }
[DataMember]
public ...
0
votes
1answer
79 views
Avoiding navigation properties (joins, relations)
Imagine I have this class
public class Case
{
[Key]
[DataMember]
public int CaseId { get; set; }
[DataMember]
public string Title { get; set; }
[DataMember]
public ...
0
votes
1answer
174 views
How to properly map entities using Fluent API?
I have two entities, a User and a UserProfile. The PK of User is UserId, the PK of UserProfile is UserProfileId. Every time a new user is created in my app, I create a new UserProfile whose PK is the ...
1
vote
1answer
116 views
Include Foreign Key Properties in DataObjects.Net
I'm recently concerned in the problems we have with Entity Framework and we may need to find a replacement. According to ORMBattle, the best candidate is DataObjects.Net, the result of my initial ...
1
vote
1answer
474 views
EF One-to-many Foreign Keys without child navigation properties
Using code-first Entity Framework and .NET 4, I'm trying to create a one-to-many relationship between parents to children:
public class Parent
{
[Key]
public int ParentId { get; set; }
...
0
votes
1answer
54 views
EF Many To Many Exisiting object
I have the following database tables:
Document
Country (never added to)
DocumentLanguage
DocumentLanguage is a link table between Country and Document only containing the ID's. Entity designer ...
1
vote
2answers
228 views
How to hide foreign key values from forms
I have a table in my database called Review and I have made ReviewController with read/write actions and views using Entity Framework. So it's all scaffolded code.
This is my Edit page.
@model ...
1
vote
1answer
573 views
Entity Framework, Code First and Foreign Keys many to many
I have this classes:
public class User
{
[Key]
public Guid UserId { get; set; }
public string Address { get; set; }
public double Latitude { get; set; }
public double Longitude { ...
0
votes
1answer
58 views
Relation of entities?
These are my entities:
public class Department
{
public Department()
{
Employees = new List<Employee>();
}
public int ID { get; set; }
public string Name { get; ...
0
votes
1answer
89 views
Cascadable one-to-one, required:required relationship with EF
I have a Video class and a MediaContent class that are linked by a 1-1, required:required relationship: each Video must have exactly 1 associated MediaContent. Deleting a MediaContent object must ...
3
votes
1answer
703 views
Removing navigation properties from POCO-classes in Entity Framwork
I'm using generated POCO classes and Entity Framework.
In order to make the code less complex I'm trying to remove all navigation properties from the code while still keeping the Foreign Key ...


