私は次のクエリを持っています
var customers = from customer in context.tblAccounts
join assoc in context.tblAccountAssociations on customer.AccountCode equals assoc.ChildCode
where customer.AccountType == "S" || customer.AccountType == "P"
select customer, assoc;
C#は、最後の「assoc」が好きではありません。
私のエラーメッセージは次のとおりです。
'assoc'という名前のローカル変数は、このスコープで宣言できません。これは、'assoc'とは異なる意味を与えるためです。これは、'子'スコープで他の何かを示すためにすでに使用されています。
両方のテーブルからすべての列を返し、次のように繰り返す必要があります
foreach(顧客のvar顧客)