is it possible to execute a stored procedure using EF, that select records from database from two or more tables using inner join and left outer join.
my point of vi
you can use ExecuteFunction of ObjectContext class:
public virtual ObjectResult NameOfStoredProcedure(Nullable tableID)
{
var IDParameter = tableID.HasValue ?
new ObjectParameter("tableID", tableID) :
new ObjectParameter("tableID", typeof(int));
return ((IObjectContextAdapter)this).ObjectContext.ExecuteFunction("NameOfStoredProcedureInSQLDatabase", IDParameter);
}