带参数 LightSwitch 的 RIA DomainService 查询

发布于 2024-12-03 11:04:50 字数 218 浏览 2 评论 0原文

我尝试在 LightSwitch 中使用 RIA 服务,但当 DomainService 中的查询具有参数时出现错误,因为查询未导入 LightSwitch。

所有其他查询都很好。

在向导窗口中附加数据源时出现的错误是

查询“AllRecordsbyId”中的参数“ID”不是可为空的类型。 该查询将不会被导入。

I am trying to use RIA services in LightSwitch but I get an error when the query in the DomainService has a parameter because the query is not imported into LightSwitch.

All the other queries are fine.

The error I get when attaching the data source in the Wizard window is

The parameter 'ID' in query 'AllRecordsbyId' is not a nullable type.
This query will not be imported.

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

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

发布评论

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

评论(1

后知后觉 2024-12-10 11:04:50

使参数可为空:

public IQueryable<CategoryTree> GetAllCategoryTree(int? AllRecordsbyId)
{
}

make the parameter nullable:

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