nopCommerce 3.0 で linq 結合クエリを作成しようとしています。私はlinqで2つのテーブルを結合して書きます
コードが成功しました。しかし、ビジュアルスタジオインテリジェンスは次のようなエラーを示しています
ステートメント本体を含むラムダ式は式ツリーに変換できません
以下の私のコードを見てください
var roles = _customerEventRoleRepository.Table.Where(c => c.EventId == selevent)
.Join
(
_customerRepository.Table,
cev => cev.CustomerId, c => c.Id,
(cev, c) =>
{
var cust = new CustomerEventRolesModel();
cust.Id = cev.Id;
cust.CustomerId = c.Id;
cust.Customer = c.Email;
cust.ContactName = c.GetAttribute<string>(SystemCustomerAttributeNames.FirstName);
cust.CompanyName = c.GetAttribute<string>(SystemCustomerAttributeNames.Company);
cust.Speaker = cev.IsSpeaker;
cust.Sponsor = cev.IsSponser;
return cust;
}
).OrderBy(cev => cev.Customer).ToList();
しかし、エラーが表示されます
助けてください