0
私のテーブルには以下の関係があります。Linqを使用した1-nナビゲーションパスの照会
TravelPlan (Table A)
Destination(table D)
とUsers(table E)
が旅行選択肢、すなわち構築するために使用される、Travelplan
缶内のエントリは、複数Destination
とUser
DestinationTravelPlanMapping(TableC)
(マッピングがすなわち1 nに、別のマッピングテーブルに格納されている)を含みます UserTravelPlanMapping(TableD)
。
が、私はLINQのを使用して、指定されたユーザーのすべてのUnique
destinations
を取得する必要があり、この
に間違ったquery.whatを完了することはできませんよ。
var userId=6;
return context.TravelPlan
.Include(x => x.DestinationTravelPlanMapping)
.Include(x => x.DestinationTravelPlanMapping.Select(y => y.Destination))
.Include(x => x.UserTravelPlanMapping.Select(y => y.UserId == userId))
// the below select statement is throwing error
.Select(x => x.DestinationTravelPlanMapping.Select(y => new Destination
{
Id = y.Destination.Id,
Name = y.Destination.Name
}));
'以下のselect文はエラーをスローしています。 – Reniuz
関数の署名はどのように見えますか? –
1)ここでは '.Include'は必要ありません。 2)関係の図を含めるか、テキストとのエンティティの関係を表す他の方法を見つけることをお勧めします。 –