Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
3answers
3k views

Entity Framework - Add Navigation Property Manually

I generated an Entity Framework Model (4.0) from my database. I did not design the database and do not have any control over the schema, but there are a few tables that do not have foreign key ...
3
votes
2answers
133 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 ...
3
votes
1answer
357 views

Entity Framework POCO - Refresh a natvigation property

I am having some trouble with refreshing the related collection of entities. Essentially the problem is as follows: public class Student { public virtual ICollection<Lecture> Lectures { ...
3
votes
3answers
2k views

EF4 POCO one to many Navigation property is null

I'm using VS2010, EF4 feature CTP (latest release), and POCO objects, such as the example below: class Person { public int ID { get; set; } public string Name { get; set; } public virtual ...
2
votes
1answer
73 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, ...
2
votes
1answer
99 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: ...
2
votes
1answer
135 views

Entity Framework - Querying Inheritance

I was tasked as a homework assignment to make a task tracker. I wanted to learn entity framework for this assignment, especially how to use the inheritance aspects. Projects, tasks and sub-tasks all ...
2
votes
1answer
523 views

Entity framework and UPDATE CASCADE

A bit frustrated over here. I'm trying to find a way to support update cascading with the entity framework, and there doesn't seem to be a built-in way. Research on the net basically shows everyone ...
2
votes
1answer
773 views

EF4 POCO - Updating a navigation property

I have a Recommendation object and a FeedbackLevel object and the FeedbackLevel object is a navigation property inside a Recommendation object Recommendation int EntityKey; FeedbackLevel Level; ...
2
votes
1answer
2k views

Undelete an entity marked as EntityState.Delete?

instead of talking let me talk with code: Dim Contact = Context.Contacts.Include("Phones") Dim phone = Contact.Phones(0) Contact.Remove(phone) How do I refresh the context now, canceling last ...
1
vote
1answer
56 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. ...
1
vote
1answer
157 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
64 views

EF 4.1 code-first: How to design and map these entities?

I have 3 entities: Member, AuthenticationToken, and Email. Each Member may has many AuthenticationTokens Each AuthenticationToken may has one or zero Email Each Member may has zero or one ...
1
vote
2answers
134 views

EF 4.1 code-first: How to select an entity with it's collection-property's count

I have an entity named Tag with a navigation property (collection) named Articles. The Tag has a ignored-property named ArticleCount that used to save tha associated Article s count (just in run-time ...
1
vote
2answers
119 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 (); ...
1
vote
1answer
176 views

How Do You Update a Navigation Property for an Entity With a Composite Key?

I'm having a problem using WCF Data Services for an entity that has a composite primary key. I'm using the Silverlight 4 Business Application Template and have created an Entity Data Model (EDM) ...
1
vote
2answers
225 views

Windows Forms data binding and property path: how to handle nullability?

I'm trying to implement a master/detail scenario with the MVVM pattern in a Windows Forms project (I'm mad, I know). Consider the following view models: public class MasterViewModel { public ...
1
vote
2answers
156 views

EF Navigation Property Looping Issue

I currently have a db that looks something like this Person Table Id Name AddressLookupTypeId AddressLookupType Table Id Description SortOrder When i use entity framework 4.0's designer and add ...
1
vote
1answer
108 views

Update resources through navigation properties possible?

I have a resource A that has a navigation property that points to resource B. The schema looks like this: Resource A: ID B (this is a one-to-many navigation property) Resource B: ID Property1 ...
1
vote
1answer
78 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
1k views

Databinding exception with entity navigation property

I have two Entity classes: Order and OrderItem. Order contains a navigation property OrderItemSet of type System.Data.Objects.DataClasses.EntityCollection<OrderItem> On an aspx page is a ...
1
vote
1answer
4k views

Including navigation properties from Entity Framework TPH classes

I've got an EF hierarchy that (dramatically simplified) looks something like this: class Room { EntityCollection<Session> Sessions; } class Session { EntityCollection<Whiteboard> ...
0
votes
2answers
28 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 ...
0
votes
1answer
20 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 ...
0
votes
2answers
72 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
100 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 ...
0
votes
1answer
52 views

MVC3 Models & Complex Relationships

Lets say you have the following models: public class Dog { public int DogId { get; set; } public string Name { get; set; } } public class Cat { public int CatId { get; set; } public string ...
0
votes
0answers
16 views

navigation propertie

How can I add a navigation property ( public virtual ICollection Enrollments { get; set; } ) to a class generated by the Entity Framework, I tried adding it in myModel.Designer.cs but it did not ...
0
votes
1answer
38 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 ...
0
votes
1answer
101 views

Navigation Property fields in a datagrid

I have a silverlight project where I need a datagrid to display data from my database model. For simplicity ill use the following model. The data grid should display articles that have been ...
0
votes
1answer
64 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 ...
0
votes
1answer
195 views

RadGrid Set Column Navigation Property

I'm having a problem with my RadGrid...Can you show me how can i on my aspx file set the column value of my grid with a navigation property field? I'm using Entity, and I have the a table ...
0
votes
4answers
116 views

Order by a field which is a Navigation Property to an Entity - Linq to Entity

I've got a scenario where I will need to order by on a column which is a navigation property for the Users entity inside my EF model. The entities: Users --> Countries 1:n relationship A simple SQL ...
0
votes
0answers
148 views

ria services navigation property

My application has a 1:N parent child entities and I am providing access to only the parent entity and am using the composition attribute to include those child entities. I need to run some ...
0
votes
1answer
130 views

How to update a set of entities?

Say I have resource A that contains a navigation property called "Bs" that points to a set of resource B. Given an instance of resource A, can I batch update the set of resource B through the ...
0
votes
1answer
620 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
1answer
138 views

Should an Entities Navigational Properties be pre-loaded or lazy-loaded over a WCF service?

We are using Self-Tracking Entities over a WCF service. Entities get returned to the client without their Navigational properties loaded. Is it a better idea to send over all navigational properties ...
0
votes
3answers
198 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 ...
0
votes
1answer
453 views

Exact purpose of Entity Framework navigation properties

please have a look at the following POCOs: public class Country { [Key] public Guid ID { get; set; } [Required] public virtual Currency Currency { get; set; } } public class ...
0
votes
2answers
350 views

DropDownList DataTextField on Navigation property

i need some help with the following. i get a list of objects from the Entity Framework data context. var list = context.EntityA; the EntityA is the main object (contains the primary key), but has ...
0
votes
2answers
237 views

How to include an inherited property in an “uneven” inheritance with Entity Framework?

I have the following model (simplified): abstract class CartItem { EntityReference<Cart> Cart; } class HotelCartItem : CartItem { EntityReference<Hotel> Hotel; } class TransferCartItem : ...
0
votes
1answer
401 views

Implementing Navigation Properties in Entity Framework

Hey folks, I've been learning MVC 2 and I have pretty much everything understood except for the model part of things, I understand what the model is but actually implementing it has me confused. ...
0
votes
2answers
1k views

Entity Framework: Why do navigation properties disappear after a group by?

I retrieve a collection with the following query: var numbers = _betDetailItem.GetBetDetailItems().Where(betDetailItem => betDetailItem.BetDetail.Bet.DateDrawing == resultToCreate.Date && ...
0
votes
1answer
77 views

Eager Loading on tracked items?

I have an element bound to an entity (Contact) that exposes some navigation properties. I want, that on some action (i.e. a "Load children" button), the Contact should load for all its children and ...
0
votes
1answer
65 views

Delete a relationship?

What is the opposite of: Dim ad As New Address Person.AddressReference.Attach(ad) I mean how do I delete the Person.Address? (both with deleting and without - meaning only delete the relation)? ...
0
votes
1answer
505 views

Is EntityReference.Load checking for EntityReference.IsLoaded?

Hi I was wondering if EntityReference.Load method includes If Not ref.IsLoaded Then ref.Load() My question is basically: Dim person = Context.Persons.FirstOrDefault person.AddressReference.Load() ...
0
votes
1answer
1k views

When querying with 'Include', does the EF checks if objects already exist in object state manager?

Should I avoid using Include in queries, or I can rely on the EDM that when it creates the query it excludes from the query items that already exist in the OSM?
0
votes
1answer
214 views

Pluralization service in Entity Framework - Visual Studio 2008?

Does any one know if there is kinda implementation/addon for VS 2008 SP1 for pluralization service in entity framework like there is gonna b in vs 2010? example: In database: Entity Order ...
0
votes
1answer
144 views

How to extract an individual item of an EntityCollection thru xaml binding?

I have a Contact entity that exposes a navigation proeprty for child Phone entities. Public Class Contact : Inherits EntityObject Public Property Phones() As EntityCollection(Of Phone) ...
0
votes
1answer
1k views

How do I create a nested GridView bound to parent's EntityDataSource's navigation property?

<asp:FormView DataSourceId="edsAccounts"> <ItemTemplate> <asp:TextBox Text='<%# Eval("Email") %>' /> <asp:DataGrid ID="dgReports" DataSource='<%# ...