Mohanavel
Mohanavel

Reputation: 1781

Stored procedure not appearing in client side [WCF Dataservice and EF4.0]

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

Answers (1)

Dave
Dave

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

Related Questions