I'm about to start creating a website using .NET Core 2.2 and ASP.NET Core 2.2. I'll be using PostgreSQL 11.3 as the database, but I'm trying to decide whether I should use Entity Framework Core or whether I should use raw SQL.
The advantage of Entity Framework Core is that everything stays in C# which makes management more manageable but the benefit of using raw SQL is that I can do everything via stored procedures and triggers as well as doing decent profiling so I can optimise the SQL queries aggressively.
At the moment I'm not sure which route to take. Does anyone have any advice at all?
The advantage of Entity Framework Core is that everything stays in C# which makes management more manageable but the benefit of using raw SQL is that I can do everything via stored procedures and triggers as well as doing decent profiling so I can optimise the SQL queries aggressively.
At the moment I'm not sure which route to take. Does anyone have any advice at all?