具有多个参数的 C# 数据访问 GetAll() 方法

发布于 2024-10-11 19:54:11 字数 382 浏览 4 评论 0原文

在数据访问层中使用如下方法是很常见的:

    Tuple<int, IList<Media>> GetAllWithFilter(int? page, string folderName, string title, string fileName, string author, string keywordTitle, int type, int fileType, int rowsPerPage, Guid keywordId, string sortField = null, string sortDir = null);

每次添加新属性时,它都会变得越来越混乱

保持这些方法可读和可维护的良好实践是什么?

谢谢

It's common to have methods like one below in the data access layer:

    Tuple<int, IList<Media>> GetAllWithFilter(int? page, string folderName, string title, string fileName, string author, string keywordTitle, int type, int fileType, int rowsPerPage, Guid keywordId, string sortField = null, string sortDir = null);

And it get's messier and messier every time a new property is added

What are the good practices to keep these methods readable and maintainable?

Thank You

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

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

发布评论

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

评论(2

堇色安年 2024-10-18 19:54:11

为什么不创建一个包含所有过滤器属性的对象并传递它呢?

Why not create an object that houses all your filter properties and just pass that around?

看海 2024-10-18 19:54:11

我认为这个会有帮助。 查询模式

I think this one would help. Query pattern

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