在 Lambda 表达式中选择 Func

发布于 2024-10-17 06:48:28 字数 346 浏览 0 评论 0原文

专家您好 我想使用 Lambda 表达式并编写此代码:

Func<Regions, SelectAllRegion> Select = r => new {r.RegionID,r.RegionDescription};
        clsr.SelectAll<SelectAllRegion>(Select);

但我不起作用。它引发此错误:

Cannot implicitly convert type 'AnonymousType#1' to 'SelectAllRegion'

我应该如何编写此代码?

Hi Experts
I want to use Lambda Expression and write this code:

Func<Regions, SelectAllRegion> Select = r => new {r.RegionID,r.RegionDescription};
        clsr.SelectAll<SelectAllRegion>(Select);

but I does not works.It raise this Error:

Cannot implicitly convert type 'AnonymousType#1' to 'SelectAllRegion'

How should I write this code?

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

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

发布评论

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

评论(2

做个少女永远怀春 2024-10-24 06:48:29

我怀疑您想要:

Func<Regions, SelectAllRegion> Select = r => new SelectAllRegion {
                                      RegionID = r.RegionID,
                                      RegionDescription = r.RegionDescription };

假设您有一个合适的 SelectAllRegion 类。您发布的 lambda 表达式将 Regions 转换为匿名类型 - 这始终是 new { ... } 的结果。这只能(有用地)在类型推断的上下文中使用,而不是像这里那样的简单变量声明。

I suspect you want:

Func<Regions, SelectAllRegion> Select = r => new SelectAllRegion {
                                      RegionID = r.RegionID,
                                      RegionDescription = r.RegionDescription };

That's assuming you've got a suitable SelectAllRegion class. The lambda expression you posted converts a a Regions into an anonymous type - which is always the result of new { ... }. That can only (usefully) be used in the context of type inference, rather than a simple variable declaration as you've got here.

相思故 2024-10-24 06:48:29

您的第一行返回匿名类型。您想要返回一个 SelectAllRegion - 如下所示:

Func<Regions, SelectAllRegion> Select = r => new SelectAllRegion()
    {RegionID = r.RegionID, RegionDescription = r.RegionDescription};

Your first line returns an anonymous type. You want to return a SelectAllRegion - something like this:

Func<Regions, SelectAllRegion> Select = r => new SelectAllRegion()
    {RegionID = r.RegionID, RegionDescription = r.RegionDescription};
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文