Table of Contents

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

string

IsDefaultSchema

Gets flag to indicate that table belongs to default schema.

public bool IsDefaultSchema { get; }

Property Value

bool

IsSystem

Gets flag to indicate system view or table.

public bool IsSystem { get; }

Property Value

bool

IsView

Gets flag to indicate that this is not a table but view.

public bool IsView { get; }

Property Value

bool

Name

Gets name of current table or view.

public string Name { get; }

Property Value

string

Schema

Gets table schema/owner name. Could be null for some providers.

public string? Schema { get; }

Property Value

string