存储过程未出现在客户端 [WCF Dataservice 和 EF4.0]

发布于 2024-10-05 14:47:25 字数 586 浏览 4 评论 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 技术交流群。

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

发布评论

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

评论(1

德意的啸 2024-10-12 14:47:25

如果我正确解释您的服务器/客户端,这听起来像是权限问题。
SQL 访问始终在服务器上运行。

If I interpret your server / client side correctly, this sounds like a permissions issue.
SQL access is always run at the server.

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