私はLinqを初めて使用し、顧客IDのリストとそのトランザクションの数を取得する方法を考えていました
public class Transaction
{
public int TransactionId {get; set;}
public int CustomerId {get; set;}
}
public class Customer
{
public int ID {get; set;}
public string Name {get; set;}
public string Surname {get; set;}
}
顧客をトランザクションに参加させる必要があると思いますが、カウントを取得する方法がよくわかりません。
var query = (from c in customers
join t in transactions on c.ID equals t.CustomerId