使用可选参数的域服务方法?

发布于 2024-10-19 22:01:32 字数 573 浏览 1 评论 0原文

我希望能够绑定到这个数据源,而视图不需要知道有一个附加参数(除非他关心)。这可以吗?

[Query]
public IQueryable<Product> GetProduct(int productID, bool someAdditionalStuff = false)
{
    return _someProvider.GetProduct(productID, someAdditionalStuff);
}

<DomainDataSource
   ID="ProductDataSource" 
   runat="server" 
   QueryName="GetProduct" 
   EnableDelete="false" EnableInsert="false" EnableUpdate="false">
   <QueryParameters>
      <asp:Parameter Name="ProductID" Type="Int32" DefaultValue="-1" />
   </QueryParameters>
</DomainDataSource>

I want to be able to bind to this datasource without the view needing to know that there is an additional parameter (unless he cares). Is this possible to do?

[Query]
public IQueryable<Product> GetProduct(int productID, bool someAdditionalStuff = false)
{
    return _someProvider.GetProduct(productID, someAdditionalStuff);
}

<DomainDataSource
   ID="ProductDataSource" 
   runat="server" 
   QueryName="GetProduct" 
   EnableDelete="false" EnableInsert="false" EnableUpdate="false">
   <QueryParameters>
      <asp:Parameter Name="ProductID" Type="Int32" DefaultValue="-1" />
   </QueryParameters>
</DomainDataSource>

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

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

发布评论

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

评论(1

心如狂蝶 2024-10-26 22:01:32

我根本没有找到任何在 WCF RIA 域服务中使用可选参数的方法。它们在服务器端代码上编译得很好,但是生成的传递到客户端的代码包含非可选参数,因此所有想要使用可选参数默认值的客户端代码都无法编译。

I haven't found any way to use optional parameters in a WCF RIA domain service at all. They compile fine on the server-side code, but the generated code that makes it over to the client side contains the parameters as non-optional, as such all of the client code that wants to use the default for the optional parameter fails to compile.

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