DesignerDataTableBase Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the properties and methods shared between data-store tables and data-store views.
public ref class DesignerDataTableBase abstract
public abstract class DesignerDataTableBase
type DesignerDataTableBase = class
Public MustInherit Class DesignerDataTableBase
- Inheritance
-
DesignerDataTableBase
- Derived
Remarks
The DesignerDataTableBase class is one of several types that represent the schema of a data store at design-time. These schema items are made available to controls by designers implementing the IDataEnvironment interface. Controls access schema objects by calling the GetConnectionSchema method of the interface.
The DesignerDataTableBase class provides the properties and methods shared between data tables in a data store and views defined on those data tables.
When you inherit from the DesignerDataTableBase class, you must override the CreateColumns method.
Constructors
DesignerDataTableBase(String, String) |
Initializes a new instance of the DesignerDataTableBase class. |
DesignerDataTableBase(String) |
Initializes a new instance of the DesignerDataTableBase class. |
Properties
Columns |
Gets a collection of columns defined for a table or view. |
Name |
Gets the name of the data-store table or view. |
Owner |
Gets the owner of the data-store table or view. |
Methods
CreateColumns() |
When overridden in a derived class, returns a collection of data-store column objects. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |