EFCore.BulkExtensions
EFCore.BulkExtensions copied to clipboard
Microsoft.Data.Sqlite.SqliteException: 'SQLite Error 1: 'near "INNER": syntax error'.'
await using var database = new PortalGeniusDatabase(); await database.Servers.Where(x => x.Portal == updatedPortal).BatchDeleteAsync();
the portalgeniusdatabase is my dbcontext public DbSet<ArcGISServerInformation> Servers { get; set; }
What can I do to prevent and better understand this issue?
x.Portal is the foreign key property for the server-object x