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 a navigation property called "EntityALanguages", which contains language specific properties.

now i want to bind the list to a dropdownlist and need so set DataValueField and DataTextField properties from the dropdownlist.

how can i set the DataTextField to a property of a navigation property, something like:

this.ddl.DataValueField = "GUID";
this.ddl.DataTextField = "EntityALanguages.ShortDescription";

Edit: The navigation property "EntityALanguages" is a collection, so EntityA -> EntityALanguages is a 1-n relation

link|improve this question

67% accept rate
feedback

2 Answers

By using var list = context.EntityA; your navigation properties will be lazy loaded. Try var list = context.EntityA.Include("EntityALanguages"); so your navigation propery will be present.

link|improve this answer
no that didn't do it. navigation properties are loaded correctly. – infadelic Jan 31 '11 at 8:53
DataBinding: EntityA does not contain a property with the name 'EntityALanguages.ShortDescription' – infadelic Jan 31 '11 at 9:05
feedback

DropDownList may not support propertytrees for binding.

What you could do if you want to bind is to do the following:

var items = context.Entity.Include("EntityALanguages").Select(row => new { Id = row.GUID, Name = row.EntityALanguages.ShortDescription}).ToList();

ddl.DataTextField = "Name"; ddl.DataValueField = "Id";

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.