Table of Contents

Class SchemaModelBase

Namespace
LinqToDB.DataModel
Assembly
linq2db.Tools.dll

Base class for schema model.

public abstract class SchemaModelBase
Inheritance
SchemaModelBase
Derived
Extension Methods

Properties

AggregateFunctions

Schema aggregate functions.

public List<AggregateFunctionModel> AggregateFunctions { get; }

Property Value

List<AggregateFunctionModel>

Entities

Schema entities (tables and views).

public List<EntityModel> Entities { get; }

Property Value

List<EntityModel>

ScalarFunctions

Schema scalar functions.

public List<ScalarFunctionModel> ScalarFunctions { get; }

Property Value

List<ScalarFunctionModel>

StoredProcedures

Schema stored procedures.

public List<StoredProcedureModel> StoredProcedures { get; }

Property Value

List<StoredProcedureModel>

TableFunctions

Schema table functions.

public List<TableFunctionModel> TableFunctions { get; }

Property Value

List<TableFunctionModel>