有没有办法在 IQueryable 中使用外部函数或简化字符串操作?

发布于 2025-01-12 09:08:03 字数 1457 浏览 0 评论 0原文

我有一个返回 IQueryable 的查询。

return _staffQueryService.ClearAllFilters().OnlyActiveStaff().ExcludeContractors()
    .Get().Select(s => new AutoCompleteItem
    {
        Value = s.PersonnelNumber,
        Text = s.FullName +
               (string.IsNullOrEmpty((string.IsNullOrWhiteSpace(s.SectionCode) ? null : s.SectionCode) ?? (string.IsNullOrWhiteSpace(s.DivisionCode) ? null : s.DivisionCode)) ? string.Empty : " (") +
               ((string.IsNullOrWhiteSpace(s.SectionCode) ? null : s.SectionCode) ?? (string.IsNullOrWhiteSpace(s.DivisionCode) ? null : s.DivisionCode)) +
               (string.IsNullOrEmpty((string.IsNullOrWhiteSpace(s.SectionCode) ? null : s.SectionCode) ?? (string.IsNullOrWhiteSpace(s.DivisionCode) ? null : s.DivisionCode)) ? string.Empty : ")") +
               (string.IsNullOrEmpty(s.FirstPhoneNumber ?? s.SecondPhoneNumber) ? string.Empty : " (") +
               (string.IsNullOrEmpty(s.FirstPhoneNumber ?? s.SecondPhoneNumber) ? string.Empty : ("x" + (s.FirstPhoneNumber ?? s.SecondPhoneNumber))) +
               (string.IsNullOrEmpty(s.FirstPhoneNumber ?? s.SecondPhoneNumber) ? string.Empty : ")"),
        Email = s.Email
    });

正如您所看到的,我不得不使用大量看起来丑陋的字符串操作来准备输出。 我必须多次重复所有字符串检查。

如果我可以使用外部函数,这可以以一种非常漂亮的方式完成,但我不能,因为它位于 IQueryable 上下文中。

我有一个限制,我无法将其转换为 IEnumerable,我必须仅以 IQueryable 形式返回结果。

考虑到这些限制,是否可以对这个丑陋的代码做一些事情来简化它?

I have this query which returns IQueryable.

return _staffQueryService.ClearAllFilters().OnlyActiveStaff().ExcludeContractors()
    .Get().Select(s => new AutoCompleteItem
    {
        Value = s.PersonnelNumber,
        Text = s.FullName +
               (string.IsNullOrEmpty((string.IsNullOrWhiteSpace(s.SectionCode) ? null : s.SectionCode) ?? (string.IsNullOrWhiteSpace(s.DivisionCode) ? null : s.DivisionCode)) ? string.Empty : " (") +
               ((string.IsNullOrWhiteSpace(s.SectionCode) ? null : s.SectionCode) ?? (string.IsNullOrWhiteSpace(s.DivisionCode) ? null : s.DivisionCode)) +
               (string.IsNullOrEmpty((string.IsNullOrWhiteSpace(s.SectionCode) ? null : s.SectionCode) ?? (string.IsNullOrWhiteSpace(s.DivisionCode) ? null : s.DivisionCode)) ? string.Empty : ")") +
               (string.IsNullOrEmpty(s.FirstPhoneNumber ?? s.SecondPhoneNumber) ? string.Empty : " (") +
               (string.IsNullOrEmpty(s.FirstPhoneNumber ?? s.SecondPhoneNumber) ? string.Empty : ("x" + (s.FirstPhoneNumber ?? s.SecondPhoneNumber))) +
               (string.IsNullOrEmpty(s.FirstPhoneNumber ?? s.SecondPhoneNumber) ? string.Empty : ")"),
        Email = s.Email
    });

As you can see I had to use a ton of ugly looking string operations to prepare the output.
I had to repeat all the strings checks multiple times.

This could have been done in a very prettier way if I could use external function, which I cannot because it is in IQueryable context.

I have a limitation that I cannot cast it to IEnumerable, I have to return the result in IQueryable form only.

Considering these limitations, is there something that can be done to this ugly looking code, to simplify it?

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

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

发布评论

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

评论(1

幸福丶如此 2025-01-19 09:08:03

您可以将映射提取到 func 委托 as 并将其用作选择器。

Func<MyModel, AutoCompleteItem> selector = s => new AutoCompleteItem
        {
            Value = s.PersonnelNumber,
            Text = s.FullName +
                   (string.IsNullOrEmpty((string.IsNullOrWhiteSpace(s.SectionCode) ? null : s.SectionCode) ?? (string.IsNullOrWhiteSpace(s.DivisionCode) ? null : s.DivisionCode)) ? string.Empty : " (") +
                   ((string.IsNullOrWhiteSpace(s.SectionCode) ? null : s.SectionCode) ?? (string.IsNullOrWhiteSpace(s.DivisionCode) ? null : s.DivisionCode)) +
                   (string.IsNullOrEmpty((string.IsNullOrWhiteSpace(s.SectionCode) ? null : s.SectionCode) ?? (string.IsNullOrWhiteSpace(s.DivisionCode) ? null : s.DivisionCode)) ? string.Empty : ")") +
                   (string.IsNullOrEmpty(s.FirstPhoneNumber ?? s.SecondPhoneNumber) ? string.Empty : " (") +
                   (string.IsNullOrEmpty(s.FirstPhoneNumber ?? s.SecondPhoneNumber) ? string.Empty : ("x" + (s.FirstPhoneNumber ?? s.SecondPhoneNumber))) +
                   (string.IsNullOrEmpty(s.FirstPhoneNumber ?? s.SecondPhoneNumber) ? string.Empty : ")"),
            Email = s.Email
        };

你可以这样使用它:

_staffQueryService.ClearAllFilters().OnlyActiveStaff().ExcludeContractors()
    .Get().Select(selector).AsQueryable();

You can extract the mapping to a func delegate as and use it as a selector.

Func<MyModel, AutoCompleteItem> selector = s => new AutoCompleteItem
        {
            Value = s.PersonnelNumber,
            Text = s.FullName +
                   (string.IsNullOrEmpty((string.IsNullOrWhiteSpace(s.SectionCode) ? null : s.SectionCode) ?? (string.IsNullOrWhiteSpace(s.DivisionCode) ? null : s.DivisionCode)) ? string.Empty : " (") +
                   ((string.IsNullOrWhiteSpace(s.SectionCode) ? null : s.SectionCode) ?? (string.IsNullOrWhiteSpace(s.DivisionCode) ? null : s.DivisionCode)) +
                   (string.IsNullOrEmpty((string.IsNullOrWhiteSpace(s.SectionCode) ? null : s.SectionCode) ?? (string.IsNullOrWhiteSpace(s.DivisionCode) ? null : s.DivisionCode)) ? string.Empty : ")") +
                   (string.IsNullOrEmpty(s.FirstPhoneNumber ?? s.SecondPhoneNumber) ? string.Empty : " (") +
                   (string.IsNullOrEmpty(s.FirstPhoneNumber ?? s.SecondPhoneNumber) ? string.Empty : ("x" + (s.FirstPhoneNumber ?? s.SecondPhoneNumber))) +
                   (string.IsNullOrEmpty(s.FirstPhoneNumber ?? s.SecondPhoneNumber) ? string.Empty : ")"),
            Email = s.Email
        };

You can use it like this:

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