Struct LoadTableData
- Namespace
- LinqToDB.SchemaProvider
- Assembly
- linq2db.dll
Contains table information, passed to LoadTable delegate.
public readonly struct LoadTableData
- Inherited Members
- Extension Methods
Properties
Database
Gets table database/catalog name. Could be null
for some providers.
public string? Database { get; }
Property Value
IsDefaultSchema
Gets flag to indicate that table belongs to default schema.
public bool IsDefaultSchema { get; }
Property Value
IsSystem
Gets flag to indicate system view or table.
public bool IsSystem { get; }
Property Value
IsView
Gets flag to indicate that this is not a table but view.
public bool IsView { get; }
Property Value
Name
Gets name of current table or view.
public string Name { get; }
Property Value
Schema
Gets table schema/owner name. Could be null
for some providers.
public string? Schema { get; }