Type that determines the appropriate relation builder based on the model type. Maps model types to their corresponding relation builder types:
The model type to determine the relation builder for
type UserRelation = Relation<User>; // HasOneRelationBuilder<User>type UsersRelation = Relation<User[]>; // HasManyRelationBuilder<User> Copy
type UserRelation = Relation<User>; // HasOneRelationBuilder<User>type UsersRelation = Relation<User[]>; // HasManyRelationBuilder<User>
Type that determines the appropriate relation builder based on the model type. Maps model types to their corresponding relation builder types: