0

私は現在、自分のオブジェクト コレクションで LINQ クエリを組み立てるのに苦労しています: 人、車

1 人が複数の車を持つことができます。

私は、個人のすべての人物と、この人物が所有するすべての車をすべてのグループで選択したいと考えています。これまでに書いたクエリは次のとおりです。

from c in persons,d in cars 
    where c.id = d.ownerID 
    group by c.Firstname into MG = tolist() 

ただし、車を持っている人のみが返されます。人が車を持っていない場合、その人はリストに含まれていません。私は正しい論理で補うことができません。

4

1 に答える 1

1

試す:

List<person> plist = new List<person>();
        plist.Add(new person(1, "a"));
        plist.Add(new person(2, "b"));
        plist.Add(new person(3, "c"));
        plist.Add(new person(4, "d"));

        List<cars> clist = new List<cars>();
        clist.Add(new cars(1, "c1"));
        clist.Add(new cars(1, "c2"));
        clist.Add(new cars(1, "c5"));
        clist.Add(new cars(2, "c1"));
        clist.Add(new cars(3, "c1"));
        clist.Add(new cars(3, "c5"));
        clist.Add(new cars(3, "c3"));
        clist.Add(new cars(3, "c2"));
        clist.Add(new cars(4, "c2"));
        clist.Add(new cars(4, "c5"));


        var result = from p in plist
                join c in clist on p.id equals c.ownerID into k
                from s in k.DefaultIfEmpty()
                select new { p.firstName , carName = (s == null ? String.Empty :s.name)};

string sss = "";
 foreach (var v in result)
 {
      sss+= ( v.firstName + " : " + v.carName +  " >> "+"\n");
 }
 textBox1.Text = sss;

クラスは次のとおりです。

class person
{
    public int id;
    public string firstName;

    public person(int id1, string name)
    {
        id = id1;
        firstName = name;
    }
}

class cars
{
    public int ownerID;
    public string name;

   public cars(int id,string name1)
    {
        ownerID = id;
        name = name1;
    }
}
于 2012-08-09T10:56:58.657 に答える