llblgen:我如何过滤?

发布于 2024-08-11 18:32:59 字数 162 浏览 3 评论 0原文

我在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梦里寻她 2024-08-18 18:32:59

您需要执行以下操作:

IRelationPredicateBucket bucket = new RelationPredicateBucket();
bucket.PredicateExpression.Add(EmployeeFields.CustomerNumber == "123");

您可以找到更深入的讨论 此处

You'll need to do something like this:

IRelationPredicateBucket bucket = new RelationPredicateBucket();
bucket.PredicateExpression.Add(EmployeeFields.CustomerNumber == "123");

You can find a much more in-depth discussion here.

独守阴晴ぅ圆缺 2024-08-18 18:32:59
EmployeeCollection employees = new EmployeeCollection();
employees.GetMulti(EmployeeFields.CustomerNumber == "123");
EmployeeCollection employees = new EmployeeCollection();
employees.GetMulti(EmployeeFields.CustomerNumber == "123");
吻安 2024-08-18 18:32:59

您可以使用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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文