Class DbMetaObject
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
Name
Gets or sets the database object identifier name.
public virtual string Name { get; set; }
Property Value
SchemaName
Gets or sets the schema namespace owner of the object (e.g., dbo, public).
public virtual string SchemaName { get; set; }
Property Value
SourceCode
Gets or sets the underlying DDL source code script of the object.
public virtual string SourceCode { get; set; }