I am trying to port an ASP.NET 4.5 application to .NET Core, and I have one real problem that I cannot understand about.
My existing application runs stored procs that return a dataset with multiple datatables. Entity Framework can automatically match returned fields with my objects, but it only works with the first datatable in a dataset (of course).
So, I'm just trying to figure out whether it is possible to somehow somehow intercept the process of building the model and use my own code to process the data set and look at other data to set entity fields.
I know that I can use the usual way to execute a stored procedure directly using SqlConnection , but I am wondering if the Entity Framework has any way to do this already.
source share