I have several listboxes which have a SelectedItem property I intend to use as input parameters to execute my stored procedure in Entity Framework.
I now realize my only hope for easily returning entity objects as the result of my Stored Procedure is to map the Stored Procedure (or Function Import) to a complex type which matches the output. (Used Julie Lerman's post here to make this decision.)
However, I need help using ObjectResult with EntityFramework to capture my listbox SelectedItem properties and feed them to the Stored Procedure (and thus output my complex type entities). Is anyone familiar with this process?
ANY help would be appreciated (guesses included). Please let me know if I can be more clear.