According to EF Core's documentation a savepoint is automatically created in case a transaction exists when calling SaveChanges. In case of failure EF then automatically rolls the transaction back to that savepoint.
Does BulkSaveChanges also automatically creates such a savepoint if a transaction exists and is the transaction automatically rolled back to that savepoint in case of an exception?
Thanks for your help!