0

私はac#クラスを持っています

public class VendorLocation
{
    public string VendorCode { get; set; }
    public string Location { get; set; }
}

とリスト

var lstVendorLocation = new List<VendorLocation>();

次の LINQ クエリはコンパイルされ、実行時に例外をスローします。

var query = from s in DB.Sales
           where lstVendorLocation.Any(vendorLoc => s.VendorCode.Equals(lstVendorLoc.VendorCode) && s.Location.Equals(lstVendorLoc.Location)) 
           select s;`

例外メッセージは次のとおりです。

値レイヤーへの既知のマッピングがないため、型「匿名型」を処理できません

4

1 に答える 1

0

lstVendorLocation現在のステータスが空の状態からアイテムを取得するにはどうすればよいですか?

このような意味でしたか?

var query = from s in DB.Sales
           where ...
           select new VendorLocation
           {
              ....
           };`
于 2013-02-18T04:26:29.333 に答える