in my linq 2 sql i had a SP with multple resultsets and a code
[Function(Name = "GetHomedashboard")]
[ResultType(typeof(TopSearch))]
[ResultType(typeof(TopVacancy))]
public IMultipleResults Usp_CandidateStats_MultipleRs([ParameterAttribute(DbType = "Int")] int? profileId)
{
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)(MethodInfo.GetCurrentMethod())), profileId);
return ((IMultipleResults)(result.ReturnValue));
}
that retrieves those sets
is there an equivalent method in EF that i can use to do achieve the same functionality. basiclay i'm looking for an equivalent of ExecuteMethodCall Method in EF