Maxim Marinchenko
Maxim Marinchenko
Thanks, @msawczyn! You're right, I was not completely accurate about entity inheritance. I guess I wrote too many words :) In fact I created this feature request mainly becuase of...
I performed some additional tests for ASP.NET Core scenario and realize that first 2 points of original request are not needed for default identity support :) The only thing that...
> /// > /// THIS MUST BE EXPLICITLY SET > /// - it will not be auto-populated > /// > public IdentityUser AspNetUser { get; set; } @Mattnificent, the data...
> I google search [get IdentityUser from ClaimsPrincipal](https://www.google.com/search?q=get+IdentityUser+from+ClaimsPrincipal), and there are no results I guess you can use `var aspNetUser = await _userManager.GetUserAsync(claimsPrincipal);`
Hi @BVIVal! You do not need to download or copy `descriptor.proto` file into your project because it is a part of Grpc.Tools package. You may check this by go to...
@MAnyKey BTW, you have 2 unused includes in YC API: `1>yandex/cloud/mdb/mysql/v1alpha/user.proto(5,1): warning : warning: Import google/protobuf/wrappers.proto but not used.` `1>yandex/cloud/mdb/mysql/v1/user.proto(5,1): warning : warning: Import google/protobuf/wrappers.proto but not used.`
@MAnyKey Do you plan to add tags representing api version to repository?
@BVIVal I downloaded your file and make the following changes. **1.** I have only VS 2017, so I changed target framework from `netcoreapp3.1` to `netcoreapp2.1` and commented out `Grpc.Net.Client` package...
Thanks, @HavenDV (and @mifopen)! So `ProtoRoot` can contain multiple directories separated by semicolon... Is it documented somewhere?
Another thanks, @HavenDV! I'll try your approach in my project next week and share my experience.