WCFDataService 无法转换

发布于 2024-10-27 18:41:58 字数 1080 浏览 1 评论 0原文

我创建了一个 WCFDataService,并有一个用于用户验证的自定义 webget 方法,从 wpf 应用程序使用它。

public static void InitializeService(DataServiceConfiguration config)
{
    config.SetEntitySetAccessRule("*", EntitySetRights.All);
    config.SetServiceOperationAccessRule("ValidateUser", ServiceOperationRights.All);
    config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V2;
    config.UseVerboseErrors = true;
}

[WebGet]
public bool ValidateUser(string UserName, string Password)
{
    return Convert.ToBoolean(MembershipService.ValidateUser(UserName, Password));
}

客户端有以下代码。

public Boolean ValidateUser(string UserName, string Password)
{
    return Convert.ToBoolean(__context.Execute<Boolean>(new Uri(string.Format("{0}ValidateUser?UserName='{1}'&Password='{2}'", __context.BaseUri, UserName, Password))));
}

我收到错误:

无法将“System.Data.Services.Client.QueryOperationResponse`1[System.Boolean]”类型的对象转换为“System.IConvertible”类型。

已尝试谷歌,但没有太多关于错误的信息,请任何人建议我正确的方向,或解决方案,链接,文章......

提前谢谢。

I have created a WCFDataService, and have a custom webget methord for user validation, using it from wpf application.

public static void InitializeService(DataServiceConfiguration config)
{
    config.SetEntitySetAccessRule("*", EntitySetRights.All);
    config.SetServiceOperationAccessRule("ValidateUser", ServiceOperationRights.All);
    config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V2;
    config.UseVerboseErrors = true;
}

[WebGet]
public bool ValidateUser(string UserName, string Password)
{
    return Convert.ToBoolean(MembershipService.ValidateUser(UserName, Password));
}

the client is having the following code.

public Boolean ValidateUser(string UserName, string Password)
{
    return Convert.ToBoolean(__context.Execute<Boolean>(new Uri(string.Format("{0}ValidateUser?UserName='{1}'&Password='{2}'", __context.BaseUri, UserName, Password))));
}

I am getting error:

Unable to cast object of type 'System.Data.Services.Client.QueryOperationResponse`1[System.Boolean]' to type 'System.IConvertible'.

Have tried to google, but not much info on the error, please can any one suggest me right direction, or solutions, links, articles.....

Thank you in advance.

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

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

发布评论

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

评论(1

笑脸一如从前 2024-11-03 18:41:58

Execute 返回 IEnumerable,因此无法使用 Convert.ToBoolean 将其转换为 bool。您需要对其调用 .Single() ,以获取其中的第一个(也是唯一一个)项目。

The Execute returns IEnumerable, so that can't be converted to bool using the Convert.ToBoolean. You need to call .Single() on it, to get the first (and only) item in it.

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