llblgen:我如何过滤?
我在使用 LLBLGen 过滤数据时遇到一些问题。我有一个 EmployeeEntity,我想在其中获取按字符串 CustomerNumber 过滤的数据。 CustomerNumber 不是主键。我想我必须使用 IPredicateExpression,但是如何呢?
编辑:我使用适配器模型。
Im having some problems with filtering data with LLBLGen. I have an EmployeeEntity where i want to fetch the data filtering by string CustomerNumber. CustomerNumber is not Primary Key. I guess i have to use the IPredicateExpression, but how?
EDIT: Im using the Adapter Model.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要执行以下操作:
您可以找到更深入的讨论 此处。
You'll need to do something like this:
You can find a much more in-depth discussion here.
您可以使用
DataAccessAdapter.FetchEntities
获取列表。过滤可以通过 PredicateExpressions 完成。可以找到谓词系统的一个很好的文档 这里。You can fetch lists using
DataAccessAdapter.FetchEntities
. The filtering can be done via PredicateExpressions. A nice documentation of the predicate system can be found here.