You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dotnet/runtime#33397 will expose a transaction savepoint API in System.Data. We currently implement savepoints within EF Core without this, but once it becomes available and we target that TFM (presumably net5.0), we can modify EF Core to delegate to the ADO.NET provider if it supports it. We still need to retain the ability to support savepoints without support from the ADO.NET provider.
This would allow us to remove SqlServerTransaction, for example.
The text was updated successfully, but these errors were encountered:
dotnet/runtime#33397 will expose a transaction savepoint API in System.Data. We currently implement savepoints within EF Core without this, but once it becomes available and we target that TFM (presumably net5.0), we can modify EF Core to delegate to the ADO.NET provider if it supports it. We still need to retain the ability to support savepoints without support from the ADO.NET provider.
This would allow us to remove SqlServerTransaction, for example.
The text was updated successfully, but these errors were encountered: