I have been really excited about using ASP.NET Core 1.0 and can't wait to create some production apps. The one issue I have is the Data Access, using MVC5 and EF6 made it really easy to create an .edmx
file and have your Stored Procedures mapped (complex types), a fantastic feature which makes it really easy for us to access data.
EF Core 1.0 github page says that it will implement Stored procedure mapping.
I have seen examples where you write your query but I want to prevent SQL Injection.
What is the best way to call a Stored Procedures with EF6 using .NET Core 1.0 with the full .NET framework?