gpt4 book ai didi

c# - 无法将类型 'bool' 隐式转换为 'system.threading.tasks.task bool'

转载 作者:可可西里 更新时间:2023-11-01 08:05:50 27 4
gpt4 key购买 nike

我在服务实现代码中遇到此错误:“无法将类型‘bool’隐式转换为‘system.threading.tasks.task bool’”。你能更正我的代码吗?

public Task<bool> login(string usn, string pwd)
{
DataClasses1DataContext auth = new DataClasses1DataContext();
var message = from p in auth.Users
where p.usrName == usn && p.usrPass == pwd
select p;
if (message.Count() > 0)
{
return true;
}
else
{
return false;
}
}

最佳答案

您需要具体说明是否希望此操作异步发生。

作为异步操作的例子:

public async Task<bool> login(string usn, string pwd)
{
DataClasses1DataContext auth = new DataClasses1DataContext();
var message = await (from p in auth.Users
where p.usrName == usn && p.usrPass == pwd
select p);
if (message.Count() > 0)
{
return true;
}
else
{
return false;
}
}

如果你不需要它是一个异步操作,试试这个:

public bool login(string usn, string pwd)
{
DataClasses1DataContext auth = new DataClasses1DataContext();
var message = from p in auth.Users
where p.usrName == usn && p.usrPass == pwd
select p;
if (message.Count() > 0)
{
return true;
}
else
{
return false;
}
}

注意:asyncawait 与 .net 4.5 和 C# 5.0 等兼容

关于c# - 无法将类型 'bool' 隐式转换为 'system.threading.tasks.task bool',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24097569/

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