简体   繁体   中英

How to delete records with FromSqlRaw in ASP.NET Core 5?

I am trying to delete all records in a PostgresSQL database table from ASP.NET Core 5.

However, I get this error:

syntax error at or near "FROM"

This is my code:

string Query = "DELETE FROM public.\"MyTable\"";
var d = await _context.MyTable.FromSqlRaw(Query).AnyAsync();

How to delete records with FromSQLRaw ?

DbSet<T>.FromSqlRaw is for fetching entities with SQL. To run an arbitrary command use Database.ExecuteSqlRaw . eg

string query = "DELETE FROM public.MyTable";
var rowCount = await _context.Database.ExecuteSqlRawAsync(query);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM