I want to execute an SQL command from Entity Framework Core 2.0, but I can’t figure out how to do so. 1.- The reason why I need to, is that I want to delete all data from a database table, and using Context.remove or Context.removeRange would produce many calls to DB (one for each data in the table). 2.- I’ve