Table of Contents

Class DbMetaObject

Namespace
Tripous.Data
Assembly
Tripous.Data.dll

Represents the base abstract class for all database metadata schema objects.

public abstract class DbMetaObject
Inheritance
DbMetaObject
Derived
Inherited Members
Extension Methods

Properties

DisplayText

Gets a descriptive, formatted string representation of the database object.

public virtual string DisplayText { get; }

Property Value

string

Name

Gets or sets the database object identifier name.

public virtual string Name { get; set; }

Property Value

string

SchemaName

Gets or sets the schema namespace owner of the object (e.g., dbo, public).

public virtual string SchemaName { get; set; }

Property Value

string

SourceCode

Gets or sets the underlying DDL source code script of the object.

public virtual string SourceCode { get; set; }

Property Value

string