Am having difficulty getting both tables from a stored procedure. So far it only return the first table, my code is below:
seat_plan seatP = new seat_plan();
apiModel api = new apiModel();
try
{
seatP.seats = new apiModel().Database.SqlQuery<seat_plan_seat>("EXEC LWP_SEAT_PLAN {0}", perf);
seatP.labels = new apiModel().Database.SqlQuery<seat_plan_label>("EXEC LWP_SEAT_PLAN {0}", perf);
}
catch (Exception) { }
return seatP;
Any thoughts?