我正在使用具有新功能的c#7.3创建类型应为枚举的通用方法。
我有一个这样的方法:
public static bool TryConvertToEnum<T>(this int value, out T returnedValue)
where T : struct, Enum
{
if (Enum.IsDefined(typeof(T), value))
{
returnedValue = (T)Enum.ToObject(typeof(T), value);
return true;
}
returnedValue = default;
return false;
}
它将尝试将int转换为特定的枚举。我试图在两种情况下使用此方法。一个有效,而另一种无效。
这是工作示例:
if (documentTypeId.TryConvertToEnum(out DocumentType returnedValue)
&& returnedValue == DocumentType.Folder)
{
//In this case it works fine
}
如果我尝试在选择方法中使用它,将无法正常工作:
var comments = await DatabaseService.GetAll(filter)
.OrderByDescending(x => x.Id)
.ToPaginated(page)
.Select(x => new PostCommentViewModel
{
Id = x.Id,
Status = x.Status.TryConvertToEnum(out PostCommentStatusType returnedValue) ?
returnedValue : PostCommentStatusType.None //Here it does not work
}).ToListAsync();
在第二种情况下,它不允许构建项目。
它给出错误:表达式树可能不包含out参数 变量声明
当我悬停时,RSharper会显示一个弹出窗口,指出:表达式树可能不包含out参数变量声明
我对可能感到困惑,不确定表达式树是否可以具有参数...
有人知道为什么会这样吗?
答案 0 :(得分:0)
实际上,这似乎很容易解决。我只需要在应用选择功能:(palmhand)之前实现数据即可。
var comments = DatabaseService.GetAll(filter)
.OrderByDescending(x => x.Id)
.ToPaginated(page)
.ToList()//Applied ToList here
.Select(x => new PostCommentViewModel
{
Id = x.Id,
Comment = x.Comment,
Created = x.Created,
Name = x.Name,
ParentId = x.ParentId,
PostId = x.PostId,
Status = x.Status.TryConvertToEnum(out PostCommentStatusType returnedValue) ?
returnedValue : PostCommentStatusType.None
}).ToList();