I am trying to implement ServiceStack Authentication and Authorization for RavenDb. ServiceStack UserAuth model has property "Id" as Int while RavenDb excepts "Id" to be String.
When I try to create a new user I get the following exception:
Message=Cannot set identity value 'UserAuths/1-A' on property 'Id' for type 'ServiceStack.Auth.UserAuth' because property type is not a string. Source=Raven.Client
Can I implement a custom_UserAuth table ignoring ServiceStack UserAuth table? Is that the only way?