允许动态过滤/查询 Repository的架构

发布于 2024-12-21 03:30:05 字数 913 浏览 4 评论 0原文

我正在寻找一个可靠的架构来解决以下问题:

作为用户,我想通过动态添加条件来动态过滤某些人员数据库。 我还希望能够根据过滤器的结果,仅将选定的字段批量更新到数据库。

以下内容正确:

  • 我有一个 3 层解决方案(GUI、业务层、数据访问层)。
  • 假设我有一个 RepositoryPerson 是域模型。
  • 该存储库支持 linq 并且可以给我: IQueryable; GetAll()

我有一些想法:

  • 我正在考虑使用动态表达式 API,它扩展了 LINQ 功能,以便我可以动态添加搜索条件。
  • 我研究过 NHibernate QueryBuilder,这可能是值得借鉴的东西。

解决方案理论:
所以,无论如何,我正在考虑 GUI 要求 DomainModel 描述自身(存在哪些属性,允许哪些运算符,以及允许的值类型是什么) 这样,我可以为属性和允许的运算符呈现一些级联下拉列表。 我正在考虑通过模型中的方法来描述属性,例如:DescribeMyself(); 然后将其与用属性装饰属性相结合。

问题:
那么描述模型的属性又如何呢?例如,属性:string Name 应该可以使用 Equals 运算符或 Like 运算符进行搜索。
那么枚举呢?想象一下MyGenderEnum Gender。在执行 Equals 过滤器时,我需要描述它必须与给定枚举中的任何值匹配。

值得思考的事情!

I'm looking for a solid architecture that will solve the following problem:

As a user i want to dynamically filter some database of Persons, by dynamically adding criterias.
I also want to be able to batch-update only chosen fields to the database, based on the results of the filter.

The following is true:

  • I have a 3-tiered solution (GUI, Business Layer, Data Access Layer).
  • Suppose I have a Repository<Person>, the Person is the domain model.
  • The repository supports linq and can give me: IQueryable<T> GetAll()

I got some ideas:

  • I'm thinking of using Dynamic Expression API, which extends LINQ functionality so i can dynamically add search criterias.
  • I've looked at NHibernate QueryBuilder, and that might be something to borrow ideas from.

Solution Theories:
So, anyway I'm thinking of the GUI asking the DomainModel to describe itself (what properties exists, and what operators are allowed, and what are the allowed valuetypes)
That way, I could render some cascading dropdowns for the properties and allowed operators.
I'm thinking of describing properties either from a method in the Model, for example: DescribeMyself();
And then combining this with decorating the properties with Attributes.

Questions:
So what about describing properties for a Model, how would you do that? For example, the property: string Name, should be searchable with either an operator of Equals, or an operator of Like.
What about enums ? Imagine MyGenderEnum Gender. When doing an Equals filter, i need to describe that it must be matched to either of any value in the given Enum.

Something to think about!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我不会写诗 2024-12-28 03:30:05

这是一个相当广泛的问题。

仅几点:

  • 开箱即用地支持向 IQueryable 动态添加搜索条件。只需为每个条件添加对 Where 的调用即可:

    repository.GetAll().Where(x => criteria1(x)).Where(x => criteria2(x));

  • 让模型描述自身是我不会做的事情。我会创建一个新类,类似于 Fluent NHibernates ClassMap 或 Fluent Validations AbstractValidator

That's a rather broad question.

Just some points:

  • Dynamically adding search criteria to an IQueryable<T> is supported out of the box. Just add a call to Where for each criteria:

    repository.GetAll<Person>().Where(x => criteria1(x)).Where(x => criteria2(x));

  • Making the model describe itself is something I wouldn't do. I would create a new class, similar to Fluent NHibernates ClassMap<T> or Fluent Validations AbstractValidator<T>.

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