使用可选参数的域服务方法?
我希望能够绑定到这个数据源,而视图不需要知道有一个附加参数(除非他关心)。这可以吗?
[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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我根本没有找到任何在 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.