Tagged Questions
2
votes
2answers
90 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
0answers
48 views
How to include all underlying navigation properties automatically with entity framework
Scenario: I'd like to add an entity to the database that would have navigation properties and that entity has navigation properties.. and so on. Basically the tables in the database are connected with ...
0
votes
1answer
49 views
DDD, EF and Referential Integrity
Ok so I have my roots defined. Entities inside a root are allowed references to other entities inside the same root, but not outside. There they can only have the identity or the related entity. ...
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
0answers
78 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
78 views
Loading preexisting navigation properties of new disconnected entities
I have a new disconnected POCO (in my case from aspnet mvc modelbinder).
public class OfflineEntry
{
public virtual int Id { get; set; }
public virtual Category Category { get; set; }
...
1
vote
1answer
357 views
Entity Framework Lazy Loading with generic repository
My current project uses a generic repository interface, thus:
public interface IDataSource : IDisposable
{
void Add<T>(T newItem) where T : EntityBase;
T Get<T>(Guid id) where T ...
0
votes
1answer
181 views
Entity Framework Database Update: Foreign Key References Invalid Column (navigation property)
This should be simple.
I have Clients and Projects:
public class Client
{
public int ClientID { get; set; }
public string ClientName { get; set; }
public virtual ...
0
votes
0answers
28 views
How to check whether an Include is needed for a Navigation Property in my Generics EF Method?
Okay, this is kind of a complicated issue, let me explain.
I have a generics method which can be used to load some entities from my database with a predicate (Where-clause) and an ordering.
public ...
0
votes
0answers
143 views
Bound a TextBox DataGridView column to a related entity property value
In an entity Framework Code First project, I've defined these entities (a simplified version of them):
public class Form {
public int FormId { get; set; }
public string Description { get; ...
1
vote
1answer
116 views
Lazy Loading and multiple references
My Database is set up with an Entity table, which has a Ref_Type navigation property (and a FK which references TypeID). The Type table, has a Ref_Department, same FK setup. Finally, the Department ...
1
vote
1answer
267 views
Entity Framework + Repository Pattern and foreign key update not updating related entity
I'm using Entity Framework 5 and the UnitOfWork + Repository pattern.
I am trying to create the following entity:
public partial class ViaggioAttivita
{
public System.Guid Id { get; set; }
...
1
vote
1answer
179 views
Self reference navigation property and json serialization
I have a Web API that exposes users.
Each user has a manager, who is also a user.
In my EDMX, I have a self 1..* Navigation Property on the "user" entity, which is "collaborators" for the navigation ...
2
votes
1answer
99 views
Do EntityFramework collection properties need a setter
The usual approach for modeling 1-n relations with EntityFramwork (Code First) is to use virtual collection properties like:
class Project {
public virtual ICollection<Remark> Remarks { get; ...
1
vote
1answer
125 views
Programmatically use navigation properties in EF given the foreignkey
In my project I have EF with ADO.NET. Suppose I have in Entity Framework the following classes
class Product
{
int Id { get; set;}
string Name { get; set; }
int TypeId { get; set; }
int ...
1
vote
0answers
735 views
Using Automapper, mapping DTOs back to Entity Framework including referenced entities
This is my first question here so please bare with me.
I've got POCO domain entities that are persisted using Entity Framework 5. They are obtained from the DbContext using a repository pattern and ...
0
votes
1answer
214 views
Table Per Hierarchy & Inherited Relationships
I'm using Entity Framework 5, targeting .Net 4.5. For the life of me I can't figure out what I'm doing wrong that's causing the following error while trying to work with Table Per Hierarchy and ...
0
votes
2answers
379 views
Explicit Loading of child navigation properties with criteria
Using DBContext in EF5 - after filtering and partial loading based on criteria like a date range.
I'm trying to produce a complete graph or tree of objects - Persons->Events where the only Events ...
0
votes
1answer
151 views
ASP.NET MVC Entity Framework - Access navigation properties on parameter model
I'm using ASP.NET WebAPI, and in my controller I have a method called PostAddToGroup, taking parameters int id and Group group. On my Group entity I have a navigation property called Members.
What I ...
1
vote
1answer
351 views
MVC viewmodel & navigation property
I have a model:
public partial class VisitorLog
{
public int Id { get; set; }
public string VisitorName { get; set; }
public DateTime TimeIn { get; set; }
public DateTime TimeOut { ...
0
votes
2answers
137 views
Collection Navigation Properties using Inheritance (Table Per Type )
Using Entity Framework: Code First, I am trying to define an collection navigation property using a navigation property of a base class.
Object structure:
public class Content
{
public int ID { ...
1
vote
1answer
76 views
.NET Entity Framework how to add navigation property
I have created data base model with entity framework which have relation many to many between recipients and mailing lists. When i generated data base it didn't give me acces to link table but just to ...
0
votes
1answer
329 views
Entity Framework POCO - Navigation Property does not refresh
I have an issue with poco classes in EF 4.
I have an Order entity wich contains a foreign key to a Customer entity.
So, the Order class has a navigation property of type Customer.
It's look like ...
0
votes
1answer
57 views
Saving navigation property in ADO.NET Entity framework
I'm working with ADO.NET Entity Framework. I add a 'User' entity in a database with the following code:
user new_user = new user();
novus_daedalus_dbEntities dbEntity = new ...
2
votes
2answers
235 views
Entity Framework - Why are navigation properties selected?
I have a base repository that looks like this:
public class BaseRepository<T> : IBaseRepository<T> where T : class
{
private DbContext _context;
private IDbSet<T> _dbSet;
...
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
2answers
468 views
Entity Framework Update Existing Object
I have added a row to my database and come back with a different context to update it. I have this class:
public abstract partial class DataManager<I, C>
where C : class, IDomainObject, ...
3
votes
1answer
492 views
Projections with Entity Framework
I have a question about making projections with the Entity Framework.
I have three tables:
Profile, Biography and BiographyTranslation
I want to do the following projection: (biographies = ...
0
votes
1answer
106 views
Insert navigation property if it doesn't exist or just use it if it does exist without key
I have 2 tables:
Person table -
PersonID
Name (unique index).
Orders table -
OrderID
Price
Item
PersonID (FK)
I want to do an insert to the ...
2
votes
2answers
213 views
using Navigation property to get Data
I am creating App using Entity Framework.I have loaded the Database model from Database.here In the Course table Department is the Navigation Property,DepartmentID is the foreign key.I have created a ...
2
votes
1answer
2k views
How to update an entity's navigation properties in Entity Framework
In ASP .NET MVC 3 with Entity Framework, I have a domain object which has a navigation property referencing another objects, as follows:
public class Person
{
public String Name {get;set;}
public ...
1
vote
1answer
950 views
Navigation Property null With Entity Framework 4.3.1
I'm using Entity Framework 4.3.1 and am having some trouble with my navigation properties.
In my context, I've enabled lazy loading:
public MyContainer()
: base(ConnectionString, ...
0
votes
2answers
449 views
Entity framework- Adding entities (and their navigation properties) with shared primary keys
This is a simplified version of the problem I am trying to solve:
There are two entities:
Item
ItemID (PK)
Other simple properties...
WorkItem (navigation property)
WorkItem
ItemID ...
2
votes
1answer
136 views
Class hierarchy definition VS (automatically) generated navigational properties
What should drive design consideration for the following case ?
Let's say you have Quotes.
A Quote relates to a specific Contract.
I can define my classes in the following way
Contract =
...
0
votes
1answer
328 views
Add Navigation Property Manually to Entity Framework
I need to add a navigation property between two Entities TableA and TableB
TableA
ID : Primary Key
Code: String (Allows Null)
TableB
BID: Primary Key
Code: String (Allows Null)
Now I want ...
0
votes
2answers
216 views
Properly using the Navigation Property in Entity Framework
I am working on a form to add new inventory into an inventory tracking database I designed. I have done a mapping to EF and I am using LINQ to EF to query data.
The equipment table has a navigation ...
1
vote
1answer
479 views
Entity Framework Navigation property interface type
I'm creating a application using entity framework code-first and i'm facing some problems with the limitations of EF while following the interface segration principle.
public interface IProduct
...
4
votes
2answers
2k views
.Skip().Take() on Entity Framework Navigation Properties is executing SELECT * on my SQL Server
I have a method on my generated partial class like this:
var pChildren = this.Children
.Skip(skipRelated)
.Take(takeRelated)
.ToList();
When I look at my SQL Server, I can see the ...
2
votes
1answer
103 views
How to save the NEW Entity which has parent relation with the Existing Entity?
If I run the code below, I got an exception.
In order to update the AssociationSet 'x', the corresponding entity from EntitySet 'x' must be available in the ObjectStateManager.
Here is my code. ...
0
votes
2answers
1k views
Entity Framework - Selective Condition on Included Navigation Property
Assume I have these simplified EF generated entities...
public class PurchaseOrder
{
public int POID {get;set;}
public int OrderID {get;set;}
public int VendorID {get;set;}
public ...
0
votes
1answer
679 views
Using an EntityDataSource to select all items from a navigation property for a GridView
I am new to the entity framework and have researched this with no avail.....although I may not have enough knowledge to ask the correct questions.
I have a table called users with user_ISN as its ...
2
votes
1answer
215 views
EF delete entity with unloaded navigation property
Hei..
I have an Entity. Mandate. Every mandate has a required:many relation to a Person (NavigationProperty). I use the DbContext API with (LazyLoadingEnabled, AutoDetectChangesEnabled, ...
0
votes
1answer
79 views
Entity Framework - Skipping objects in navigation path
I have three entities based on 3 DB tables, (cardinality below the relationships).
Pupil - SchoolClass - ClassType
N:1 1:1
I want to fetch a list of pupils and update their scalar ...
1
vote
1answer
1k views
Implement a navigation property in c# class
i have 2 entities each with a relating c# class. I set up a navigation property on table A to contain a reference to many items in table B. When i make a new table A class object i need to be able to ...
1
vote
1answer
177 views
How do I save a NavigationProperty on an Entity from a different context?
I have two database tables, one for Events and one for RecurrenceRules. Events have a FK that points to a RecurrenceRuleID.
All I want to do is Save an Event AND it's Recurrence rule from a new ...
1
vote
2answers
367 views
How can I set the value of a Navigation Property in the code behind?
I have an Entity called Cost, which has a required property of CostType
The Cost class has a GetNew() method which sets all the Cost's defaults:
public static GetNew()
{
Cost cost = new Cost ();
...
2
votes
1answer
163 views
EF 4 Navigation Properties Question
Suppose I had TableA with 2 relationship references to TableB, where TableB is the primary key (let's say it has a PrimaryBKey and SecondaryBKey columns as the FK names in TableA). So I have entity:
...
1
vote
1answer
246 views
Using Entity Framework and where queries without creating lots of queries (avoiding N+1)
I've been using a design pattern that after using the Entity Framework Profiler seems like it might be quite foolish.
I've been extended my entity classes to have properties that are filtered views ...
1
vote
1answer
3k views
Using Entity Framework navigation properties without creating lots of queries (avoiding N+1)
I've been using Entity Framework Profiler to test my data access in an MVC project and have come accross several pages where I'm making far more db queries than I need to because of N+1 problems.
...
0
votes
3answers
494 views
Foreign key values without navigation properties
Is it possible to assign foreign key values manually when inserting records?
I do not want to use a TransactionScope or similar construct. But i do want to set the foreignkey value before calling ...

