拡張構文を使用して、私が持っている2つのリストでLINQを使用して左結合を作成しようとしています。以下はマイクロソフトのヘルプによるものですが、ペットリストに要素がないことを示すために変更しました。最終的には、0個の要素のリストです。これは、内部結合が行われているためだと思います。最後に、3つの要素(3つのPersonオブジェクト)のリストを作成し、不足している要素についてはnullデータを入力します。すなわち、左結合。これは可能ですか?
Person magnus = new Person { Name = "Hedlund, Magnus" };
Person terry = new Person { Name = "Adams, Terry" };
Person charlotte = new Person { Name = "Weiss, Charlotte" };
//Pet barley = new Pet { Name = "Barley", Owner = terry };
//Pet boots = new Pet { Name = "Boots", Owner = terry };
//Pet whiskers = new Pet { Name = "Whiskers", Owner = charlotte };
//Pet daisy = new Pet { Name = "Daisy", Owner = magnus };
List<Person> people = new List<Person> { magnus, terry, charlotte };
//List<Pet> pets = new List<Pet> { barley, boots, whiskers, daisy };
List<Pet> pets = new List<Pet>();
// Create a list of Person-Pet pairs where
// each element is an anonymous type that contains a
// Pet's name and the name of the Person that owns the Pet.
var query =
people.Join(pets,
person => person,
pet => pet.Owner,
(person, pet) =>
new { OwnerName = person.Name, Pet = pet.Name }).ToList();
拡張メソッドを使用する場合は、 GroupJoin を使用する必要があると思います
var query =
people.GroupJoin(pets,
person => person,
pet => pet.Owner,
(person, petCollection) =>
new { OwnerName = person.Name,
Pet = PetCollection.Select( p => p.Name )
.DefaultIfEmpty() }
).ToList();
選択式をいじる必要があるかもしれません。 1対多の関係がある場合に、望みどおりになるかどうかはわかりません。
LINQ Query構文を使用すると少し簡単になると思います
var query = (from person in context.People
join pet in context.Pets on person equals pet.Owner
into tempPets
from pets in tempPets.DefaultIfEmpty()
select new { OwnerName = person.Name, Pet = pets.Name })
.ToList();
JPunyonが言ったように、結合されたオブジェクトをセットに入れてからDefaultIfEmptyを適用する必要があります。
Person magnus = new Person { Name = "Hedlund, Magnus" };
Person terry = new Person { Name = "Adams, Terry" };
Person charlotte = new Person { Name = "Weiss, Charlotte" };
Pet barley = new Pet { Name = "Barley", Owner = terry };
List<Person> people = new List<Person> { magnus, terry, charlotte };
List<Pet> pets = new List<Pet>{barley};
var results =
from person in people
join pet in pets on person.Name equals pet.Owner.Name into ownedPets
from ownedPet in ownedPets.DefaultIfEmpty(new Pet())
orderby person.Name
select new { OwnerName = person.Name, ownedPet.Name };
foreach (var item in results)
{
Console.WriteLine(
String.Format("{0,-25} has {1}", item.OwnerName, item.Name ) );
}
出力:
Adams, Terry has Barley
Hedlund, Magnus has
Weiss, Charlotte has
この同じ問題に直面したときに、次のエラーメッセージが表示されます。
結合句の式の1つの型が正しくありません。「GroupJoin」の呼び出しで型推論が失敗しました。
同じプロパティ名を使用すると解決し、機能しました。
(...)
join enderecoST in db.PessoaEnderecos on
new
{
CD_PESSOA = nf.CD_PESSOA_ST,
CD_ENDERECO_PESSOA = nf.CD_ENDERECO_PESSOA_ST
} equals
new
{
enderecoST.CD_PESSOA,
enderecoST.CD_ENDERECO_PESSOA
} into eST
(...)
Fabrice(LINQ in Actionの著者)が投稿したばかりの良いブログ投稿は、私が尋ねた質問の内容をカバーしています。質問の読者がこれを役に立つと思うので、私はそれを参照のためにここに置いています。
DefaultIfEmpty()メソッドを使用して、LINQの左結合が可能です。あなたの場合の正確な構文はありませんが...
実際に、クエリでペットをpets.DefaultIfEmpty()に変更するだけで動作すると思う...
編集:私は本当に遅いときに物事に答えるべきではない...
実際にデータベースがある場合、これが最も簡単な方法です。
var lsPetOwners = ( from person in context.People
from pets in context.Pets
.Where(mypet => mypet.Owner == person.ID)
.DefaultIfEmpty()
select new { OwnerName = person.Name, Pet = pets.Name }
).ToList();