存储过程未出现在客户端 [WCF Dataservice 和 EF4.0]
我们使用 Visual Studio 2010 和 .Net Framework 4.0。项目设置“目标框架”是“.Net Framework 4.0”。我按照此 链接。但在客户端,存储过程方法没有出现。
这是在 DataModel.Designer.cs 文件中生成的方法。
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectResult<global::System.String> display()
{
return base.ExecuteFunction<global::System.String>("display");
}
我更新了客户端,还是没有出现这个方法。我也尝试过实体数据类型。
We are using Visual Studio 2010, and .Net Framework 4.0. The project settings "Target Framework" is ".Net Framework 4.0". I added the "Stored Procedure" to the server side as suggested by this link. But in the client side, the stored procedure method is not appearing.
This is the method generated in the DataModel.Designer.cs file.
/// <summary>
/// No Metadata Documentation available.
/// </summary>
public ObjectResult<global::System.String> display()
{
return base.ExecuteFunction<global::System.String>("display");
}
I updated the client side, still this method is not appearing. I tried with entity datatype also.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我正确解释您的服务器/客户端,这听起来像是权限问题。
SQL 访问始终在服务器上运行。
If I interpret your server / client side correctly, this sounds like a permissions issue.
SQL access is always run at the server.