aspnet-identity-mongo
aspnet-identity-mongo copied to clipboard
Extract base class IdentityUserBase from IdentityUser to allow differ…
…ent subclasses that support non-ObjectId Ids.
We wanted to use Guid Ids in our project for IdentityUser. So I extracted a base class IdentityUserBase
without the [BsonRepresentation(BsonType.ObjectId)]
attribute from IdentityUser.
IdentityUser
should is still the default and should look and behave the same from a client perspective.
- Upgraded to VS 2017 and official .NET Core 1.0 tooling
@g0t4 I was just wondering what the current state of support was for this repository?
This PR looks like an ideal solution to a problem I was having with the Id representation - I nearly created a fork to add something like this.