Jon P Smith
Jon P Smith
Hi @gigabytem, I suggest you read the article [Finally, a library that improves role authorization in ASP.NET Core](https://www.thereformedprogrammer.net/finally-a-library-that-improves-role-authorization-in-asp-net-core/) which explains how the Roles / Permissions. The AuthP library handles the...
Hi @SoftAdviceJR, Its hard to diagnose your problem so I will tell you about how the the built-in Azure AD and WebAPI features work to help you to work out...
Hi @SanYiKou, I will look at this but I'm busy on another project at the moment. I'll let you know when I have something and you can test it for...
Hi @SanYiKou, I know you asked this question a long time ago, but (with the help of others) I have just released [EfCore.SchemaCompare 8.0.0-rc2-0002](https://www.nuget.org/packages/EfCore.SchemaCompare/8.0.0-rc2-0002#releasenotes-body-tab) which (I hope) will work with...
You will have to provide the EF Core DbContext and entity classes, your SQL Server database structure and the failing EFCore.SchemaCompare output for me to look at this.
Hi @STARSCrazy, I have just released [EfCore.SchemaCompare 8.0.0-rc2-0002](https://www.nuget.org/packages/EfCore.SchemaCompare/8.0.0-rc2-0002#releasenotes-body-tab) which (I hope) will work with other database types. Can you try this an let me know if it works for you.
Hi @viettran1109, I need a bit more information for this issue. Can you provide: - Your DbContext - Your entity classes, e.g. Student - Your test code If your DbContext...
Hi @urielzen, I don't expect to check all the new features added to EF Core 8 - some I can't find the data to compare (like TablePerType) and some just...
Thanks @haas-daniel. I kinda expected that the it was something to do the postgresql version. I suggest that you add an entry for this change to the EF Core's [NET...
```c# [Fact] public void Test() { const string connectionString = "host=127.0.0.1;Database=Test-TestPostgesEnsureDelete;Username=xxx;Password=xxx"; var builder = new DbContextOptionsBuilder(); builder.UseNpgsql(connectionString); var options = builder.Options; using var context = new DbContext1(options); context.Database.EnsureCreated(); context.Database.EnsureDeleted(); //throws...