-1

I have an ASP.NET Core MVC solution.

I tried to get dynamic object and uncertainly column numbers and types from a stored procedure.

I prepared the stored procedure, but I couldn't find a solution about created stored procedure's class and more usage in EF Core 3.0.

I found a lot of solutions another versions of EF, but my developed project unfortunately business level project and already using EF Core 3.0 in many modules in a single a solution. How can I dynamically fetch data from SQL in ASP.NET Core MVC with EF Core 3.0?

1
  • 1
    Use Dapper for such task. Commented Sep 23, 2021 at 5:26

1 Answer 1

-1

If your project is handling very large data transfers, I would not recommend using EntityFramework. You can take full control by using Repository Pattern. take a look here.

If you use Repository Pattern, it provides great advantages in terms of both program speed and change. That's why ORM is not the first product to look at in large projects.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.