EFCore.BulkExtensions icon indicating copy to clipboard operation
EFCore.BulkExtensions copied to clipboard

Microsoft.Data.Sqlite.SqliteException: 'SQLite Error 1: 'near "INNER": syntax error'.'

Open MannusEtten opened this issue 1 year ago • 0 comments

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

MannusEtten avatar Nov 27 '23 18:11 MannusEtten