有没有办法在 IQueryable 中使用外部函数或简化字符串操作?
我有一个返回 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将映射提取到
func
委托 as 并将其用作选择器。你可以这样使用它:
You can extract the mapping to a
func
delegate as and use it as a selector.You can use it like this: