931 B
931 B
DbContextConfig
This config contains all configurations for the given DbContext type.
Configuration methods
Table (With configurator)
Configures the table of the DbContext using the provided configurator.
DbContextConfigurator<TDbContext> Table<TModel>(Action<TableConfigurator<TModel>> configurator) where TModel : class
-
Type Parameters:
TModel: The model of the table for identifying the correct one.
-
Parameters:
configurator: Used for configuring the table.
-
Returns:
DbContextConfigurator<TDbContext>
Table (Without configurator)
Configures the table of the DbContext.
TableConfigurator<TModel> Table<TModel>() where TModel : class