I get the following error:
Procedure or function 'procTestReport' expects parameter '@StartDate', which was not supplied.
When I execute the following code:
String[] args = new String[2]{StartDate.ToShortDateString(), EndDate.ToShortDateString()};
lst = dbContext.ExecuteQuery<Summary>("procTestReport", args).ToList<Summary>();
Are the arguments I pass supposed to be presented in a different way? From the following link it seems like I'm using it correctly: https://msdn.microsoft.com/en-us/library/bb361109.aspx