Reputation: 1781
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.
Upvotes: 1
Views: 583
Reputation: 1234
If I interpret your server / client side correctly, this sounds like a permissions issue.
SQL access is always run at the server.
Upvotes: 1