Jon P Smith
Jon P Smith
Hi @idan-h, > I noticed there is no check if the roles are valid for the user That isn't correct. This section in the [`InviteNewUserService`](https://github.com/JonPSmith/AuthPermissions.AspNetCore/blob/main/AuthPermissions.SupportCode/AddUsersServices/InviteNewUserService.cs#L117L127) checks that invites to a...
Version 3.3.0 of the AuthP provides one way via the [AzureAdNewUserManager](https://github.com/JonPSmith/AuthPermissions.AspNetCore/blob/main/AuthPermissions.SupportCode/AddUsersServices/Authentication/AzureAdNewUserManager.cs), but that won't work with Azure AD B2C with social logins. I'm leaving this open as I have an...
Hi @akema-trebla, Great to see you doing this! I just wanted to alert that I am currently improving Example3 (in the `dev` branch) with a better ["sign up / versioning"](https://www.thereformedprogrammer.net/multi-tenant-apps-with-different-versions-can-increase-your-profits/)...
Hi @akema-trebla, Version 3.3.0 is out now and merged into the `main` branch. It has some changes, but its mainly new code. I'm not working on the AuthP at he...
What do you mean by "...not compatible with Automapper v 11.0.0"? Does it no compile, or fails when used?
Difficult - AuthoMapper 11.0.0. doesn't support net6 - see [this](https://docs.automapper.org/en/latest/11.0-Upgrade-Guide.html). Not going to look at that for a while, so use AuthMapper 10.1.1 for now.
Hi @kcaswick, There are two issues here: 1. Is it worth adding support for the ProblemDetails class? 2. The EfCore.GenericServices.AspNetCore uses Microsoft.AspNetCore.Mvc.Core Version="2.1.1" Taking the "is it worth adding support...
Thanks @ConnorJBishop for that. I plan to update the libraries to 3.1 and I might add a `status.ConvertToProblemDetails()` extension method at the same time.
Hi @MarcoGaribaldi, The `AddSingleSoftDeleteQueryFilter` isn't part of the EfCore.SoftDeleteServices, but you can find the `AddSingleSoftDeleteQueryFilter` in the [SingleQueryFilterExtensions](https://github.com/JonPSmith/EfCore.SoftDeleteServices/blob/master/DataLayer/SingleEfCode/SingleQueryFilterExtensions.cs) in the DataLayer project. You need to copy that code and put...
Hi @tschennie, The `CreateUniqueMethodOptions` only sets up the options for the DbContext so that shouldn't cause the type of exception. I expect its how you reset / create the database....