I have an EFCore 8.0 console testing app in which I use the UseSnakeCaseNamingConvention() option on a postgresql dbContext withUseNpgsl() for testing and designing some entities . I have a await db.Database.EnsureDeletedAsync(cancellationToken) and await db.Database.EnsureCreatedAsync(cancellationToken) and both throws with 'The object has been removed from the model.' once I upgraded EFCore.NamingConventions to 8.0.0 and even 8.0.1.
I have had no such issues with 8.0.0-rc2, and I have now rolled back to 8.0.0-rc2 and it works 100% like before the updates.
I have an EFCore 8.0 console testing app in which I use the
UseSnakeCaseNamingConvention()
option on a postgresql dbContext withUseNpgsl()
for testing and designing some entities . I have aawait db.Database.EnsureDeletedAsync(cancellationToken)
andawait db.Database.EnsureCreatedAsync(cancellationToken)
and both throws with 'The object has been removed from the model.' once I upgraded EFCore.NamingConventions to 8.0.0 and even 8.0.1.I have had no such issues with 8.0.0-rc2, and I have now rolled back to 8.0.0-rc2 and it works 100% like before the updates.
Thanks for the package btw!