I would like to create a DefaultPrinterId
property (field) attached on UserAuth
table. This DefaultPrinterId
field is a foreign key on a Printer.Id
field (Printer
is a custom table).
My question is, What is the best way to create a new field for UserAuth and fill property value after authentication?
Should I override AuthUserSession
, UserAuth
, OrmLiteAuthRepository
?
I am a bit confused, even after reading documentation.
Thanks.