gpt4 book ai didi

asp.net - C# 7.0 值元组编译错误?

转载 作者:行者123 更新时间:2023-12-04 18:57:45 25 4
gpt4 key购买 nike

当我尝试编译以下代码时:

var post = iPostService.GetAll().Select(x => (x.Title, x.Author));

我收到编译器错误:“表达式树可能不包含元组文字。”

所以我也试过这个:
var post = iPostService.GetAll().
Select(x => new ValueTuple<string, string>(x.Title, x.Author))

结果是运行时错误:'无法解析方法 Void .ctor(System.String, System.String) 因为方法句柄 System.ValueTuple`2[T1,T2] 的声明类型是通用的。向 GetMethodFromHandle 显式提供声明类型。

我在谷歌上搜索了这个问题的解决方案,但没有任何帮助。

任何帮助真的很感激。

谢谢

最佳答案

它对我有用,先创建一个元组并将其转换为 ValueTuple:

var post = iPostService.GetAll().
Select(x => new Tuple<string, string>(x.Title, x.Author).ToValueTuple())

关于asp.net - C# 7.0 值元组编译错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48138067/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com