In a Silverlight app. when calling an SQL Server stored procedure from Entity Framework Domain Service class, how to get a feedback that stored procedure is performed without errors?
public void MySPmethod(string par1, string par2)
{
this.ObjectContext.MyStoredProc(par1, par2);
}
If an error occurs, you’ll get an exception.
If you don’t get an exception, you know that it worked.