Class Table
- Namespace
- Microsoft.EntityFrameworkCore.Metadata.Internal
- Assembly
- Microsoft.EntityFrameworkCore.Relational.dll
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public class Table : TableBase, ITable, ITableBase, IAnnotatable
- Inheritance
-
Table
- Implements
-
IAnnotatable
- Inherited Members
Constructors
Table(string, string, RelationalModel)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public Table(string name, string schema, RelationalModel model)
Parameters
name
stringschema
stringmodel
RelationalModel
Properties
ForeignKeyConstraints
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public virtual SortedDictionary<string, ForeignKeyConstraint> ForeignKeyConstraints { get; }
Property Value
Indexes
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public virtual SortedDictionary<string, TableIndex> Indexes { get; }
Property Value
IsExcludedFromMigrations
public virtual bool IsExcludedFromMigrations { get; set; }
Property Value
PrimaryKey
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public virtual UniqueConstraint PrimaryKey { get; set; }
Property Value
UniqueConstraints
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public virtual SortedDictionary<string, UniqueConstraint> UniqueConstraints { get; }
Property Value
Methods
FindColumn(IProperty)
public override IColumnBase FindColumn(IProperty property)
Parameters
property
IProperty
Returns
FindUniqueConstraint(string)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public virtual UniqueConstraint FindUniqueConstraint(string name)
Parameters
name
string
Returns
ToString()
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
public override string ToString()