当前位置:  开发笔记 > 数据库 > 正文

"Entities.Product"类型的"IsDeleted"不支持子查询

如何解决《"Entities.Product"类型的"IsDeleted"不支持子查询》经验,为你挑选了0个好方法。

我正在使用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;

有任何想法吗?

推荐阅读
谢谢巷议
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有