Thanks! I hope this will be implemented soon - it would be a great feature.
Thank you!
How can I create a foreign key pointing to the id of an user in the user table?
[Table("DbAppTesttable")]
public class Testtable : FullAuditedEntity<long>, IMustHaveTenant
{
// Foreign Key: ID of User
[ForeignKey("User ...
...
}