以下のコードの問題は何ですか?
var newContextElementCollection = new List<NewContextElements>();
var res = from eleCollection in newContextElementCollection
where eleCollection.Property.Except(new List<string> { "Password", "Some Other Value" })
select eleCollection;
NewContextElementCollection
クラス:
public class NewContextElements
{
public string Property { get; set; }
public string Value { get; set; }
}
このエラーが発生しています:
インスタンス引数: 'string' から 'System.Linq.IQueryable' に変換できません エラー 2 'string' には 'Except' の定義と最適な拡張メソッド オーバーロード 'System.Linq.Queryable.Except(System.Linq. IQueryable、
System.Collections.Generic.IEnumerable)' には無効な引数があります