mguinness
mguinness
I meant if you tried `Pomelo.EntityFrameworkCore.MySql` with `ConnectionReset=false` in the connection string.
OK, worth a try.
Weird, I didn't know that `MySql.EntityFrameworkCore` from Oracle had support for NTS. Out of interest, what is the namespace of the `Point` type in your IntervenantRayonIntervs class?
This code was added in PR https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/pull/568 where code was copied from upstream and not tailored for MySQL/MariaDB. Seeing method `ForSqlServerUseSequenceHiLo` seems to indicate as much. It would need someone...
Possible explanation from issue at https://github.com/aws/aws-lambda-dotnet/issues/462 > Assembly.GetEntryAssembly() will return back the AWS .NET Lambda bootstrap assembly which is correct as it is the entry point
That might need to be discussed in the upstream repo at [EF Core](https://github.com/dotnet/efcore/issues) as I don't think this is a provider specific issue.
Have you confirmed that the action isn't being called twice from the client? Should be easy to verify from the web server logs.
> I even have a package for EF that does a non-physical deletion of the record, would that be too difficult to put in Pomelo? ([https://www.nuget.org/packages/Canducci.SoftDelete/](https://www.nuget.org/packages/Canducci.SoftDelete/)) Any soft delete functionality...
Any soft delete functionality should be implemented in EF Core not at the provider level, i.e. this is universal, not provider specific.
Typically not all method overloads are supported in [Translations](https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/wiki/Translations). The general rule is that if it's supported by [SQL Server](https://docs.microsoft.com/en-us/ef/core/providers/sql-server/functions) then other providers will follow (for cross compatibility). In this...