I have a simple ASP.NET Core service that needs to have exactly one interaction with a database. It calls a stored procedure that returns a BigInt/long.
It seems a bit of overkill to fire up all the stuff to run Entity Framework Core for this. Especially since EF Core does not do stored procedures very well (as of the last time I checked).
Is there a .NET Core only way to call and get the results of a stored procedure (without using EF Core or other frameworks)?