我正在使用Linq to SQL并尝试使用DataOptions和AssociateWith过滤数据.我有一个名为Products的表,它有一个名为Id的主键和一个名为IsDeleted的标志,带有sql-datatype位.
当我使用下面的代码时,我得到" AssociateWith方法"的"实体.Product"类型的'IsDeleted'不支持子查询.
var context = new DataContext(); DataLoadOptions options = new DataLoadOptions(); options.AssociateWith(p => !p.IsDeleted); context.LoadOptions = options;
有任何想法吗?