Class SchemaInitEventArgs
- Namespace
- DevExpress.Xpo
- Assembly
- DevExpress.Xpo.v24.1.dll
Provides data for the IDataLayer.SchemaInit event.
public class SchemaInitEventArgs : EventArgs
- Inheritance
-
SchemaInitEventArgs
- Inherited Members
Constructors
SchemaInitEventArgs(XPClassInfo, IDbCommand)
Initializes a new instance of the SchemaInitEventArgs class.
public SchemaInitEventArgs(XPClassInfo table, IDbCommand command)
Parameters
table
XPClassInfoAn XPClassInfo object which provides object metadata for the schema which has been created in storage. This value is assigned to the SchemaInitEventArgs.Table property.
command
IDbCommandAn object which implements the IDbCommand interface. This value is assigned to the SchemaInitEventArgs.Command property.
Properties
Command
Gets an SQL statement which can be executed while connected to an SQL data source.
public IDbCommand Command { get; }
Property Value
- IDbCommand
An object which implements the IDbCommand interface.
Table
Gets an object metadata the schema for which has been created in storage.
public XPClassInfo Table { get; }
Property Value
- XPClassInfo
An XPClassInfo object which specifies object metadata the schema for which has been created in storage.