The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
97 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
2answers
30 views

NavigationProperty null on added foreign key

Whenever I add a foreign key entity to my previous entity by setting the ForeignKey-ID, the associated object is null. Let me explain this: In a previous step I've set the AddressId property to 28 ...
0
votes
0answers
49 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
50 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
66 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
81 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
79 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
239 views

ASP.Net MVC with Entity Framework Code First Navigation Property

I have an entity called Service like following: public class Service { [Key] [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)] public int serviceId { get; set; } public ...
1
vote
1answer
366 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
183 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 ...
2
votes
2answers
486 views

ASP.NET MVC 4 Navigation Virtual Property not populated on Post Action

I have a navigation property (Category) on a Question class for which I am manually creating a DropDownList for in the Create view of Question, and when posting the Create action, the Category ...
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
117 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 ...
0
votes
0answers
93 views

Binding a textbox to a navigation property

I have some classes in my WinForm Project (i summarized their properties) as: also i have a method in my BLL layer that return a list of Customers as IBindingList<Customer>. now i want bind ...
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; } ...
0
votes
0answers
111 views

How do I load data of Navigation Properties using reflection

Here in the code below CaseType is the entity that has lots of navigation properties. And there can be multiple levels of navigation properties as well. I don't want to use the Include function ...
0
votes
1answer
690 views

Entity Framework 5 - code first array navigation property one to many with Interface Type

These are my classes: public class Post : IPost { public int Id { get; set; } public virtual int[] DuplicateOf { get; set; } public virtual ICommentInfo[] Comments { get; set; } } ...
1
vote
1answer
180 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
102 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; ...
0
votes
0answers
266 views

MVC4 Navigation Properties with composite keys

I have created an MVC4 web application using EF-database-first. The tables have composite keys [ID, Name, EffDate], and no foreign keys defined in the database: For example, Department partial class: ...
1
vote
1answer
126 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 ...
0
votes
0answers
67 views

Data passing from WCF to MVC: Duplicated object is returned as Null in Navigation Property

Following is the exact structure of my table (and so entities) Country: CountryId, CountryName City: CityId, CountryId, CityName The return type of a WCF method is: CustomerCities having properties ...
1
vote
0answers
736 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
215 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
383 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
330 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
237 views

How to join ef navigation properties in linq to entities

I try to get the following sql written in Linq to Entities: SELECT * FROM SafetySheets AS SS JOIN UserProfiles AS UP ON SS.CreatedBy = UP.UserId JOIN SafetyOfficers AS SO ON SS.SafetyOfficer_Id = ...
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 ...
0
votes
1answer
746 views

Ignore Properties in OnModelCreating

I'm attempting to use Bounded (Db) Contexts in Entity Framework 5.0, and I'm having problems excluding a property from one of the classes included in a specific context. Here is the information (I'll ...
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
228 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 ...
7
votes
1answer
109 views

Why would a datetime prevent a navigation property from getting loaded?

I am using Entity Framework 4.3.1 using the DbContext POCO approach against a SQL Server 2012 database. I have just two tables in the database and they look like this: NOTE: There are no ...
1
vote
1answer
144 views

Reference a parent table for a Navigation Property in EF

I essentially have three tables with FK's Make MakeId MakeName Model ModelId ModelName MakeId (FK) Vehicle VehicleId DatePurchased ModelId (FK) I would like a navigation property ...
5
votes
1answer
1k views

Using navigation properties in entity framework code first

Context: Code First, Entity Framework 4.3.1; User ---- Topic, 1 to Many relation; User with public virtual ICollection<Topic> CreatedTopics Navigation Property(Lazy Loading); Topic with public ...
1
vote
2answers
470 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, ...
0
votes
1answer
565 views

load navigation properties with filter for Entity Framework 4.3

Few days back I put a question regarding mapping two classes Message and MessageStatusHistory using EF. The mapping is going fine but I am facing some problems with the navigation property ...
3
votes
1answer
495 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
164 views

How to include navigation properties recursively

I have 2 databases, each with a corresponding EntityFramework DB Context and I am using Entity Framework 5, Code-First. I have tables resembling the following: Table : Foo (resides in database ...
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 ...
4
votes
1answer
596 views

EF 4.3.1 Include inherited navigation properties in LinqToEntities query

I'm trying to setup a simple inheritance scenario with EF 4.3.1 using code first approch and fluent configuration. I've created an abstract base type 'A' with a one-to-one navigation property and an ...
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
953 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
1answer
278 views

MVC3 Navigation Property Attributes and Client Side Validation

I am making my first tentative steps into MVC3 and have come across an issue with the translation of navigation properties within a model to a view. It seems that in the view navigational properties ...
0
votes
1answer
354 views

entity framework code first double one to one relationship

class Event{ int? EventID{get;set;} int? FirstParticipantID{get;set;} Participant FirstParticipant{get;set;} int? SecondParticipantID{get;set;} Participant ...

1 2 3