Implementing Windows authentication with ASP.NET Core Identity authorization

I want to create a project that uses Windows Authentication instead of the traditional username/email and password for authentication and I want to use the ASP.Net Identity for authorization. I was wondering if this is even possible and is this approach recommended?

Also I tried using the Radzen Blazor Studio to generate the Windows authentication code, and then I created a new project and generated the ASP.Net Core Identity code. I tried combining them but I'm not sure how to connect the windows autheticaion logic with identity authorization.

Any tips would be great!

As far as we know you can’t do that - ASP.NET Identity users/passwords are retrieved from a database and cannot be mixed with Windows users.