Class DbContextExtensions
Inheritance
DbContextExtensions
Assembly: Coree.NETStandard.dll
Syntax
public static class DbContextExtensions
Methods
|
Edit this page
View Source
GenerateCreateTableScript<T>(DbContext)
Generates a CREATE TABLE script for the specified entity type including indexes and foreign keys.
Declaration
public static string GenerateCreateTableScript<T>(this DbContext context) where T : class
Parameters
Type |
Name |
Description |
DbContext |
context |
The database context.
|
Returns
Type |
Description |
string |
A CREATE TABLE script as a string, with indexes and foreign keys.
|
Type Parameters
Name |
Description |
T |
The type of the entity.
|
|
Edit this page
View Source
GetPrimaryKey<TEntity>(DbContext)
Declaration
public static IKey GetPrimaryKey<TEntity>(this DbContext context) where TEntity : class
Parameters
Returns
Type Parameters