这个 ReSharper 代码片段“转换为方法组”是什么?实际上在做什么?

发布于 2024-12-01 04:02:58 字数 452 浏览 1 评论 0原文

在此处输入图像描述

更改前的代码:

List<ProductBrandModel> model = brands.Select(item => Mapper.Map<ProductBrand, ProductBrandModel>(item)).ToList();

改进后的代码:

List<ProductBrandModel> model = brands.Select(Mapper.Map<ProductBrand, ProductBrandModel>).ToList();

这是在做什么?它是否隐式地在 brands 集合中的每个项目上运行该映射?

enter image description here

Code before the changes:

List<ProductBrandModel> model = brands.Select(item => Mapper.Map<ProductBrand, ProductBrandModel>(item)).ToList();

Code after the improvement:

List<ProductBrandModel> model = brands.Select(Mapper.Map<ProductBrand, ProductBrandModel>).ToList();

What is this doing? Is it implicitly running that mapping on every item in the brands collection?

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

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

发布评论

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

评论(2

守望孤独 2024-12-08 04:02:58

由于您直接将 lambda 表达式的参数传递给 Mapper.Map 方法,因此它与直接指定此方法作为 Select 的投影完全相同。 Mapper.Map 的签名与 Func 委托兼容,因此 R# 建议直接使用方法组而不是 lambda 表达式。

Since you're directly passing the parameter of the lambda expression to the Mapper.Map method, it is exactly equivalent to specifying this method directly as the projection for Select. The signature of Mapper.Map is compatible with the Func<TSource, TResult> delegate, so R# suggests to use the method group directly rather than a lambda expression.

残月升风 2024-12-08 04:02:58

第一行创建一个立即调用 Mapper.Map 函数的方法。这是不必要的,因为 Mapper.Map 方法与 Select 的预期定义匹配,并且可以直接调用 Mapper.Map。 Resharper 对其进行了更改,以便仅调用 1 个方法,并且编译器不会生成额外的方法。

The first line creates a method that immediately calls the Mapper.Map function. This is unnecessary since the Mapper.Map method matches the expected definition of Select and can call Mapper.Map directly. Resharper changes it so that only 1 method is called and the extra method is not generated by the compiler.

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