public List<Store> GetAllFriendsTopStores(long uid, List<long> users)
{
using (var entities = new myEntities()) {
var v = entities.DbUsers
.Where( x => users.Contains( x.uid ))
.Stores // i can't select stores here? Why is this???
}
}
In this case Stores is a navigation property... I need to be able to access the stores objects for my friends in this scenerio.