6250 lines
230 KiB
XML
6250 lines
230 KiB
XML
<?xml version="1.0"?>
|
|
<doc>
|
|
<assembly>
|
|
<name>DevExpress.DataAccess.v15.1</name>
|
|
</assembly>
|
|
<members>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.TeradataConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to a Teradata database server.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.TeradataConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the TeradataConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.TeradataConnectionParameters.#ctor(System.String,System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the TeradataConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="serverName">
|
|
A <see cref="T:System.String"/> value that specifies the name of the Teradata server to which the connection should be established.
|
|
|
|
</param>
|
|
<param name="port">
|
|
A <see cref="T:System.String"/> value that specifies the port used to establish a connection to server.
|
|
|
|
</param>
|
|
<param name="databaseName">
|
|
A <see cref="T:System.String"/> value that specifies the database name.
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used for authentication.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used for authentication.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.ConnectionParameters.TeradataConnectionParameters.DefaultPort">
|
|
<summary>
|
|
<para>A default port used to establish a connection to a Teradata database server.
|
|
</para>
|
|
</summary>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.TeradataConnectionParameters.Port">
|
|
<summary>
|
|
<para>Gets or sets a port used to establish a connection to a Teradata database server.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value that specifies the port used to establish a connection to a Teradata database server.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.DBColumnWithAlias">
|
|
|
|
<summary>
|
|
<para>A column in a <see cref="T:DevExpress.DataAccess.Sql.DBTableWithAlias"/>.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.DBColumnWithAlias.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the DBColumnWithAlias class.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> that specifies the column's name. This value is assigned to the <see cref="F:DevExpress.Xpo.DB.DBColumn.Name"/> field.
|
|
|
|
</param>
|
|
<param name="alias">
|
|
A <see cref="T:System.String"/> that specifies the column's alias. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.DBColumnWithAlias.Alias"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.DBColumnWithAlias.#ctor(System.String,System.String,System.Boolean,System.String,System.Int32,DevExpress.Xpo.DB.DBColumnType)">
|
|
<summary>
|
|
<para>Initializes a new instance of the DBColumnWithAlias class.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> that specifies the column's name. This value is assigned to the <see cref="F:DevExpress.Xpo.DB.DBColumn.Name"/> field.
|
|
|
|
</param>
|
|
<param name="alias">
|
|
A <see cref="T:System.String"/> that specifies the column's alias. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.DBColumnWithAlias.Alias"/> property.
|
|
|
|
</param>
|
|
<param name="isKey">
|
|
A <see cref="T:System.Boolean"/> value specifying whether the current column is the primary key. This value is assigned to the <see cref="F:DevExpress.Xpo.DB.DBColumn.IsKey"/> field.
|
|
|
|
</param>
|
|
<param name="dBTypeName">
|
|
A <see cref="T:System.String"/> specifying the name of the column data type. This value is assigned to the <see cref="F:DevExpress.Xpo.DB.DBColumn.DBTypeName"/> field.
|
|
|
|
</param>
|
|
<param name="size">
|
|
Specifies the maximum length of a text column. This value is assigned to the <see cref="F:DevExpress.Xpo.DB.DBColumn.Size"/> field.
|
|
|
|
</param>
|
|
<param name="type">
|
|
A <b>DBColumnType</b> enumeration value that specifies the column's type. This value is assigned to the <see cref="F:DevExpress.Xpo.DB.DBColumn.ColumnType"/> field.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.DBColumnWithAlias.Alias">
|
|
<summary>
|
|
<para>Gets or sets the column's alias.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> specifying the column's alias.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.EntityFramework.EFDataConnection">
|
|
|
|
<summary>
|
|
<para>A connection to an Entity Framework data source.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataConnection.#ctor(System.String,DevExpress.DataAccess.EntityFramework.EFConnectionParameters)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFDataConnection class with the specified connection name and parameters.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value, specifying the connection name. This value is assigner to the <see cref="P:DevExpress.DataAccess.DataConnectionBase.Name"/> property.
|
|
|
|
</param>
|
|
<param name="connectionParameters">
|
|
A <see cref="T:DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase"/> descendant. This value is assigned to the <see cref="P:DevExpress.DataAccess.EntityFramework.EFDataConnection.ConnectionParameters"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataConnection.Close">
|
|
<summary>
|
|
<para>Closes the connection to an Entity Framework data source.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataConnection.ConnectionParameters">
|
|
<summary>
|
|
<para>Specifies parameters used to establish a connection.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.EntityFramework.EFConnectionParameters"/> object.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataConnection.ConnectionString">
|
|
<summary>
|
|
<para>Specifies a connection string used to connect to data.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the connection string.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataConnection.ConnectionStringsProvider">
|
|
<summary>
|
|
<para>Specifies the connection string provider for an <b>EFDataConnection</b>.
|
|
</para>
|
|
</summary>
|
|
<value>An object implementing the <see cref="T:DevExpress.Data.Entity.IConnectionStringsProvider"/> interface.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataConnection.CreateConnectionString">
|
|
<summary>
|
|
<para>Creates a connection string used by an Entity Framework data source to establish a connection to a data base.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.String"/> value specifying the connection string.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataConnection.CreateDataConnectionParameters">
|
|
<summary>
|
|
<para>Creates the connection parameters for an Entity Framework data source.
|
|
</para>
|
|
</summary>
|
|
<returns>An <see cref="T:DevExpress.DataAccess.EntityFramework.EFConnectionParameters"/> object.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataConnection.Dispose">
|
|
<summary>
|
|
<para>Releases all resources used by an EFDataConnection.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataConnection.GetDBSchema(System.String[])">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="tableList">
|
|
|
|
</param>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataConnection.GetDBSchema">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataConnection.IsConnected">
|
|
<summary>
|
|
<para>Specifies whether or not the data connection is currently active.
|
|
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b> if the data connection is active; otherwise <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataConnection.Name">
|
|
<summary>
|
|
<para>Specifies the name of a data connection.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataConnection.Open">
|
|
<summary>
|
|
<para>Opens the data connection session.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataConnection.SolutionTypesProvider">
|
|
<summary>
|
|
<para>Specifies the solution types provider for an EFDataConnection.
|
|
</para>
|
|
</summary>
|
|
<value>An object implementing the <see cref="T:DevExpress.Entity.ProjectModel.ISolutionTypesProvider"/> interface that provides access to the known types in the current solution.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataConnection.StoreConnectionNameOnly">
|
|
<summary>
|
|
<para>Specifies whether to store any connection settings except for the data connection name.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b> to store only the name of a data connection; otherwise <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.DBSchema">
|
|
|
|
<summary>
|
|
<para>An object schema that is used to manage database objects (e.g., <see cref="T:DevExpress.Xpo.DB.DBTable"/> objects or their descendants).
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.DBSchema.#ctor(DevExpress.Xpo.DB.DBTable[],DevExpress.Xpo.DB.DBTable[])">
|
|
<summary>
|
|
<para>Initializes a new instance of the DBSchema class.
|
|
</para>
|
|
</summary>
|
|
<param name="tables">
|
|
An array of <see cref="T:DevExpress.Xpo.DB.DBTable"/> objects representing tables that will be included in the DBSchema. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.DBSchema.Tables"/> property.
|
|
|
|
</param>
|
|
<param name="views">
|
|
An array of <see cref="T:DevExpress.Xpo.DB.DBTable"/> objects representing views that will be included in the DBSchema. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.DBSchema.Views"/> property.
|
|
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.DBSchema.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the DBSchema class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.DBSchema.#ctor(DevExpress.Xpo.DB.DBTable[],DevExpress.Xpo.DB.DBTable[],DevExpress.Xpo.DB.DBStoredProcedure[])">
|
|
<summary>
|
|
<para>Initializes a new instance of the DBSchema class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="tables">
|
|
An array of <see cref="T:DevExpress.Xpo.DB.DBTable"/> objects.
|
|
|
|
</param>
|
|
<param name="views">
|
|
An array of <see cref="T:DevExpress.Xpo.DB.DBTable"/> objects.
|
|
|
|
</param>
|
|
<param name="storedProcedures">
|
|
An array of <see cref="T:DevExpress.Xpo.DB.DBStoredProcedure"/> objects.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.DBSchema.LoadFromXml(System.IO.Stream)">
|
|
<summary>
|
|
<para>Loads the data store's schema from a specific stream.
|
|
</para>
|
|
</summary>
|
|
<param name="stream">
|
|
A <see cref="T:System.IO.Stream"/> descendant from which the data store's schema is loaded.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.DBSchema.SaveToXml(System.IO.Stream)">
|
|
<summary>
|
|
<para>Saves the data store's schema to a specific stream.
|
|
</para>
|
|
</summary>
|
|
<param name="stream">
|
|
A <see cref="T:System.IO.Stream"/> descendant to which the data store's schema is written.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.DBSchema.StoredProcedures">
|
|
<summary>
|
|
<para>Gets stored procedures included in the DBSchema.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.Xpo.DB.DBStoredProcedure"/> value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.DBSchema.Tables">
|
|
<summary>
|
|
<para>Gets tables included in the DBSchema.
|
|
|
|
</para>
|
|
</summary>
|
|
<value>An array of <see cref="T:DevExpress.Xpo.DB.DBTable"/> objects representing tables included in the DBSchema.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.DBSchema.Views">
|
|
<summary>
|
|
<para>Gets views included in the DBSchema.
|
|
|
|
</para>
|
|
</summary>
|
|
<value>An array of <see cref="T:DevExpress.Xpo.DB.DBTable"/> objects representing views included in the DBSchema.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService">
|
|
|
|
<summary>
|
|
<para>When implemented by a class, provides a service functionality to store the data connection settings.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService.CanSaveConnection">
|
|
<summary>
|
|
<para>If implemented, determine whether a connection can be saved to the connection storage.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b>, if a connection can saved; otherwise, <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService.Contains(System.String)">
|
|
<summary>
|
|
<para>If implemented, determines whether or not the connection storage contains a specific connection string.
|
|
</para>
|
|
</summary>
|
|
<param name="connectionName">
|
|
A <see cref="T:System.String"/> value that specifies the name of a connection.
|
|
|
|
</param>
|
|
<returns><b>true</b>, if the connection storage contains a connection; otherwise, <b>false</b>.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService.GetConnections">
|
|
<summary>
|
|
<para>Obtains a collection of data connections, available in the connection storage.
|
|
</para>
|
|
</summary>
|
|
<returns>A collection of <see cref="T:DevExpress.DataAccess.Sql.SqlDataConnection"/> objects.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Wizard.Services.IConnectionStorageService.SaveConnection(System.String,DevExpress.DataAccess.Wizard.Model.IDataConnection,System.Boolean)">
|
|
<summary>
|
|
<para>Saves the specified data connection.
|
|
</para>
|
|
</summary>
|
|
<param name="connectionName">
|
|
A <see cref="T:System.String"/> value, specifying the connection name.
|
|
|
|
</param>
|
|
<param name="connection">
|
|
An object implementing the <see cref="T:DevExpress.DataAccess.Wizard.Model.IDataConnection"/> interface.
|
|
|
|
</param>
|
|
<param name="saveCredentials">
|
|
<b>true</b> to save the user credentials along with the data connection settings; <b>false</b> to only save the data connection settings.
|
|
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Wizard.Services.IParameterService">
|
|
|
|
<summary>
|
|
<para>When implemented by a class, provides a service functionality to mange report parameters created in the Report Wizard.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Wizard.Services.IParameterService.AddParameter(DevExpress.Data.IParameter)">
|
|
<summary>
|
|
<para>If implemented, adds a parameter to a parameter storage.
|
|
</para>
|
|
</summary>
|
|
<param name="parameter">
|
|
An object implementing the <see cref="T:DevExpress.Data.IParameter"/> interface.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Wizard.Services.IParameterService.AddParameterString">
|
|
<summary>
|
|
<para>If implemented, specifies the caption of the <b>New Report Parameter</b> command available in the Report Designer.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Wizard.Services.IParameterService.CreateParameter(System.Type)">
|
|
<summary>
|
|
<para>If implemented, creates a new parameter of the specified type.
|
|
</para>
|
|
</summary>
|
|
<param name="type">
|
|
A <see cref="T:System.Type"/> value.
|
|
|
|
</param>
|
|
<returns>An object implementing the <see cref="T:DevExpress.Data.IParameter"/> interface.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Wizard.Services.IParameterService.CreateParameterString">
|
|
<summary>
|
|
<para>If implemented, specifies the title of the <b>Report Parameter</b> dialog invoked from the Report Designer.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Wizard.Services.IParameterService.Parameters">
|
|
<summary>
|
|
<para>If implemented, provides access to a collection of the available report parameters.
|
|
</para>
|
|
</summary>
|
|
<value>A collection of objects implementing the <see cref="T:DevExpress.Data.IParameter"/> interface.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ObjectBinding.ParameterList">
|
|
|
|
<summary>
|
|
<para>A list of <see cref="T:DevExpress.DataAccess.ObjectBinding.Parameter"/> objects.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ParameterList.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the ParameterList class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ParameterList.#ctor(System.Int32)">
|
|
<summary>
|
|
<para>Initializes a new instance of the ParameterList class with the specified initial capacity.
|
|
</para>
|
|
</summary>
|
|
<param name="capacity">
|
|
An integer specifying the initial list capacity.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ParameterList.#ctor(System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Initializes a new instance of the ParameterList class with the specified default set of elements.
|
|
</para>
|
|
</summary>
|
|
<param name="collection">
|
|
A collection of elements to be added to a list.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ParameterList.AddRange(DevExpress.DataAccess.ObjectBinding.Parameter[])">
|
|
<summary>
|
|
<para>Appends an array of master-detail relations to the ParameterList.
|
|
</para>
|
|
</summary>
|
|
<param name="items">
|
|
An array of <see cref="T:DevExpress.DataAccess.ObjectBinding.Parameter"/> objects to append to the collection.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ObjectBinding.ObjectMember">
|
|
|
|
<summary>
|
|
<para>Contains information about a member of an object data source.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectMember.#ctor(System.Reflection.MemberInfo)">
|
|
<summary>
|
|
<para>Initializes a new instance of the ObjectMember class with the specified member information.
|
|
</para>
|
|
</summary>
|
|
<param name="memberInfo">
|
|
A <see cref="T:System.Reflection.MemberInfo"/> value providing access to member metadata.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectMember.#ctor(System.ComponentModel.PropertyDescriptor)">
|
|
<summary>
|
|
<para>Initializes a new instance of the ObjectMember class with the specified property descriptor.
|
|
</para>
|
|
</summary>
|
|
<param name="pd">
|
|
A <see cref="T:System.ComponentModel.PropertyDescriptor"/> value providing access to information about a property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectMember.Attributes">
|
|
<summary>
|
|
<para>Obtains a collection of attributes assigned to a member.
|
|
</para>
|
|
</summary>
|
|
<value>A collection of <see cref="T:System.Attribute"/> values.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectMember.GetParameters(System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="defaultValues">
|
|
|
|
</param>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectMember.HasParams">
|
|
<summary>
|
|
<para>Indicates whether or not a member is a method with parameters.
|
|
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b>, if a member is a method with parameters; otherwise, <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectMember.Highlighted">
|
|
<summary>
|
|
<para>Indicates whether or not the <see cref="T:DevExpress.DataAccess.ObjectBinding.HighlightedMemberAttribute"/> is assigned to a method.
|
|
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b>, if the <see cref="T:DevExpress.DataAccess.ObjectBinding.HighlightedMemberAttribute"/> attribute is assigned to a method; otherwise, <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectMember.Invoke(System.Object,System.Object[])">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="instance">
|
|
|
|
</param>
|
|
<param name="parameters">
|
|
|
|
</param>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectMember.IsMethod">
|
|
<summary>
|
|
<para>Indicates whether or not a member is a method.
|
|
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b>, if a member is a method; otherwise, <b>false</b>
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectMember.IsProperty">
|
|
<summary>
|
|
<para>Indidcates whether or not a member is a property.
|
|
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b>, if a member is a property; otherwise, <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectMember.IsStatic">
|
|
<summary>
|
|
<para>Indicates whether or not a member is static.
|
|
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b>, if a member is static; otherwise, <b>false</b>
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectMember.MemberInfo">
|
|
<summary>
|
|
<para>Obtains a <a href="http://msdn.microsoft.com/en-us/library/system.reflection.memberinfo(v=vs.110).aspx">MemberInfo</a> object containing information about the current member.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="MemberInfo"/> object.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectMember.MemberType">
|
|
<summary>
|
|
<para>Obtains the type of the current member.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.Reflection.MemberTypes"/> value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectMember.Name">
|
|
<summary>
|
|
<para>Indicates the name of a member.
|
|
</para>
|
|
</summary>
|
|
<value>A string containing the member name.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectMember.Parameters">
|
|
<summary>
|
|
<para>Obtains a collection of constructor parameters.
|
|
|
|
</para>
|
|
</summary>
|
|
<value>A collection of <see cref="T:DevExpress.DataAccess.ObjectBinding.Parameter"/> values, specifying parameters to be passed to an object constructor.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectMember.Pd">
|
|
<summary>
|
|
<para>Provides access to a property descriptor containing information about a property of an object data source.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.ComponentModel.PropertyDescriptor"/> value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectMember.ReturnType">
|
|
<summary>
|
|
<para>Obtains the return type of the current member.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.Type"/> value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectMember.ToString">
|
|
<summary>
|
|
<para>Returns the textual representation of an ObjectMember.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.String"/> value, which is the textual representation of an ObjectMember.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ObjectBinding.HighlightedMemberAttribute">
|
|
|
|
<summary>
|
|
<para>When applied to a data source member, includes the corresponding item in the list of highlighted data members in the Data Source Wizard.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.HighlightedMemberAttribute.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the HighlightedMemberAttribute class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ObjectBinding.HighlightedClassAttribute">
|
|
|
|
<summary>
|
|
<para>When applied to a class, includes the corresponding item in the list of highlighted classes in the Data Source Wizard.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.HighlightedClassAttribute.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the HighlightedClassAttribute class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ObjectBinding.HighlightedAssemblyAttribute">
|
|
|
|
<summary>
|
|
<para>When applied to an assembly, includes the corresponding item in the list of highlighted assemblies in the Data Source Wizard.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.HighlightedAssemblyAttribute.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the HighlightedAssemblyAttribute class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource">
|
|
|
|
<summary>
|
|
<para>Assists a report in connecting to an object data source.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the ObjectDataSource class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.#ctor(System.ComponentModel.IContainer)">
|
|
<summary>
|
|
<para>Initializes a new instance of the ObjectDataSource class with a specified container.
|
|
</para>
|
|
</summary>
|
|
<param name="container">
|
|
An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface that specifies the container of the ObjectDataSource.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.Base64">
|
|
<summary>
|
|
<para>Specifies base-<b>64</b> character data of an object data source.
|
|
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.BeginInit">
|
|
<summary>
|
|
<para>Signals the object data source that initialization is starting.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.BeginUpdate">
|
|
<summary>
|
|
<para>Signals the object data source that updating has begun.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.Constructor">
|
|
<summary>
|
|
<para>Specifies an object that enables an <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/> to access constructor parameters.
|
|
</para>
|
|
</summary>
|
|
<value>An <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo"/> value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.DataMember">
|
|
<summary>
|
|
<para>Specifies the data member of an object data source.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the data member.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.DataSource">
|
|
<summary>
|
|
<para>Specifies the object data source.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.Object"/> value, specifying the data source.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.DataSourceType">
|
|
<summary>
|
|
<para>Specifies the type of an object data source.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.Type"/> structure.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.EndInit">
|
|
<summary>
|
|
<para>Signals the object data source that initialization is complete.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.EndUpdate">
|
|
<summary>
|
|
<para>Signals the object data source that updating has ended.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.Fill">
|
|
<summary>
|
|
<para>Retrieves the data from the object data source.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.GetItemProperties(System.ComponentModel.PropertyDescriptor[])">
|
|
<summary>
|
|
<para>Returns an object that describes the item properties of an object data source.
|
|
</para>
|
|
</summary>
|
|
<param name="listAccessors">
|
|
An array of <see cref="T:System.ComponentModel.PropertyDescriptor"/> values.
|
|
|
|
</param>
|
|
<returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> value.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.GetListName(System.ComponentModel.PropertyDescriptor[])">
|
|
<summary>
|
|
<para>Returns the name of a list associated with an object data source.
|
|
</para>
|
|
</summary>
|
|
<param name="listAccessors">
|
|
An array of <see cref="T:System.ComponentModel.PropertyDescriptor"/> values.
|
|
|
|
</param>
|
|
<returns>A <see cref="T:System.String"/> value.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.Invalidate">
|
|
<summary>
|
|
<para>Performs parameter validation.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.LoadFromXml(System.Xml.Linq.XElement)">
|
|
<summary>
|
|
<para>Loads the object data source schema definition from XML.
|
|
</para>
|
|
</summary>
|
|
<param name="element">
|
|
A <see cref="T:System.Xml.Linq.XElement"/> value containing an XML definition of the data source schema.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.Parameters">
|
|
<summary>
|
|
<para>Provides access to the list of connection parameters.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.ObjectBinding.ParameterList"/> value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectDataSource.SaveToXml">
|
|
<summary>
|
|
<para>Saves the XML definition of the object data source schema.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.Xml.Linq.XElement"/> value containing an XML definition of the data source schema.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Wizard.Services.IExceptionHandler">
|
|
|
|
<summary>
|
|
<para>When implemented by a class, provides the exception handler functionality.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Wizard.Services.IExceptionHandler.AnyExceptions">
|
|
<summary>
|
|
<para>Indicates whether there are exceptions to handle.
|
|
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b>, if there are exceptions to handle; otherwise, <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Wizard.Services.IExceptionHandler.HandleException(System.Exception)">
|
|
<summary>
|
|
<para>Handles the specified exception.
|
|
|
|
</para>
|
|
</summary>
|
|
<param name="exception">
|
|
A <see cref="T:System.Exception"/> object.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo">
|
|
|
|
<summary>
|
|
<para>Provides functionality to access constructor parameters when binding to an <see cref="T:DevExpress.DataAccess.ObjectBinding.ObjectDataSource"/>.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the ObjectConstructorInfo class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo.#ctor(System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Initializes a new instance of the ObjectConstructorInfo class with the specified constructor parameters.
|
|
</para>
|
|
</summary>
|
|
<param name="parameters">
|
|
A collection of <see cref="T:DevExpress.DataAccess.ObjectBinding.Parameter"/> values, specifying parameters to be passed to an object constructor.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo.#ctor(DevExpress.DataAccess.ObjectBinding.Parameter[])">
|
|
<summary>
|
|
<para>Initializes a new instance of the ObjectConstructorInfo class with default settings.
|
|
</para>
|
|
</summary>
|
|
<param name="parameters">
|
|
An array of <see cref="T:DevExpress.DataAccess.ObjectBinding.Parameter"/> objects.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo.Default">
|
|
<summary>
|
|
<para>Provides access to the default object constructor.
|
|
</para>
|
|
</summary>
|
|
<value>An <see cref="ObjectConstructorInfo"/> value containing settings of the default object constructor.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo.Parameters">
|
|
<summary>
|
|
<para>Provides access to a collection of parameters to be passed to a constructor when it is invoked
|
|
</para>
|
|
</summary>
|
|
<value>A collection of <see cref="T:DevExpress.DataAccess.ObjectBinding.Parameter"/> values.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.ObjectConstructorInfo.ToString">
|
|
<summary>
|
|
<para>Returns the textual representation of an ObjectConstructorInfo.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.String"/> value, which is the textual representation of an ObjectConstructorInfo.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.TableInfoList">
|
|
|
|
<summary>
|
|
<para>A collection of data tables.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableInfoList.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the TableInfoList class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableInfoList.#ctor(System.Int32)">
|
|
<summary>
|
|
<para>Initializes a new instance of the TableInfoList class with the specified capacity.
|
|
</para>
|
|
</summary>
|
|
<param name="capacity">
|
|
An integer value, specifying the total number of elements that a list can hold without resizing.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableInfoList.#ctor(System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Initializes a new instance of the TableInfoList class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="collection">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.TableInfo"/> objects.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableInfoList.AddRange(DevExpress.DataAccess.Sql.TableInfo[])">
|
|
<summary>
|
|
<para>Appends an array of data tables to the TableInfoList.
|
|
</para>
|
|
</summary>
|
|
<param name="collection">
|
|
An array of <see cref="T:DevExpress.Data.XtraReports.DataProviders.TableInfo"/> objects to append to the collection.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.RelationInfoList">
|
|
|
|
<summary>
|
|
<para>A collection of master-detail relations.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfoList.#ctor(System.Int32)">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationInfoList class with the specified capacity.
|
|
</para>
|
|
</summary>
|
|
<param name="capacity">
|
|
An integer value, specifying the total number of elements that a list can hold without resizing.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfoList.#ctor(System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationInfoList class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="collection">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.RelationInfo"/> objects.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfoList.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationInfoList class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfoList.AddRange(DevExpress.DataAccess.Sql.RelationInfo[])">
|
|
<summary>
|
|
<para>Appends an array of master-detail relations to the RelationInfoList.
|
|
</para>
|
|
</summary>
|
|
<param name="collection">
|
|
An array of <see cref="T:DevExpress.DataAccess.Sql.RelationInfo"/> objects to append to the collection.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Wizard.Services.IConnectionProviderService">
|
|
|
|
<summary>
|
|
<para>When implemented by a class, provides the data connection functionality.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Wizard.Services.IConnectionProviderService.LoadConnection(System.String)">
|
|
<summary>
|
|
<para>Loads the specified <see cref="T:DevExpress.DataAccess.Sql.SqlDataConnection"/>.
|
|
</para>
|
|
</summary>
|
|
<param name="connectionName">
|
|
A <see cref="T:System.String"/> value, specifying the connection name.
|
|
|
|
</param>
|
|
<returns>An <see cref="T:DevExpress.DataAccess.Sql.SqlDataConnection"/> object.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.VistaDB5ConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to a VistaDB 5 database file.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.VistaDB5ConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the VistaDB5ConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.VistaDB5ConnectionParameters.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the VistaDB5ConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="fileName">
|
|
A <see cref="T:System.String"/> that specifies the path to the VistaDB database file.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used for authentication.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.AmazonRedshiftConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to an Amazon Redshift database.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.AmazonRedshiftConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the AmazonRedshiftConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.AmazonRedshiftConnectionParameters.#ctor(System.String,System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the AmazonRedshiftConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="serverName">
|
|
A <see cref="T:System.String"/> that specifies the name of the database that contains the required data. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.DatabaseName"/> property.
|
|
|
|
</param>
|
|
<param name="port">
|
|
|
|
</param>
|
|
<param name="databaseName">
|
|
|
|
</param>
|
|
<param name="userName">
|
|
|
|
</param>
|
|
<param name="password">
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Localization.DataAccessStringId">
|
|
|
|
<summary>
|
|
<para>Contains values corresponding to strings that can be localized for a Data Access application.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.AggregationWithoutAliasValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The aggregated column should have an alias."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.CircularRelationsValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "Circular relations have been detected."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ColumnNotInSchemaValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The schema does not contain the following column: \"{0}\".\"{1}\"."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ColumnNullValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "A column cannot be null."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ConnectingToDatabaseCaption">
|
|
<summary>
|
|
<para><b>Default value</b>: "Please wait"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ConnectingToDatabaseMessage">
|
|
<summary>
|
|
<para><b>Default value</b>: "Connecting to the database"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ConnectionStringPostfixAppConfig">
|
|
<summary>
|
|
<para><b>Default value</b>: " (in the config file)"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ConnectionStringPostfixServerExplorer">
|
|
<summary>
|
|
<para><b>Default value</b>: " (from the Server Explorer)"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.DatabaseConnectionExceptionStringId">
|
|
<summary>
|
|
<para><b>Default value</b>: "Failed to connect to the database. To learn more, see the exception details. \r\n\r\nException details:\r\n {0}"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.DefaultNameDataSource">
|
|
<summary>
|
|
<para><b>Default value</b>: "Data Source"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.DuplicatingColumnNamesValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "A column with the following name already exists: \"{0}\".\"{1}\"."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.DuplicatingTableNamesValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "A table with the following name already exists: \"{0}\"."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.EmptyColumnAliasPattern">
|
|
<summary>
|
|
<para><b>Default value</b>: "Column{0}"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.FilterByAmbiguousColumnValidationException">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.FilterByColumnOfMissingTableValidationException">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.FilterByMissingInSchemaColumnValidationExpression">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.GatheringTypesPanelText">
|
|
<summary>
|
|
<para><b>Default value</b>: "Gathering types information..."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.GroupByAggregateColumnValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "Cannot group by an aggregate column: \"{0}\".\"{1}\"."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.IncompleteRelationValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The specified relation is incomplete: \"{0}\"."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.LoadingDataPanelText">
|
|
<summary>
|
|
<para><b>Default value</b>: "Loading Data..."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.LoadingDataSourcePanelCounter">
|
|
<summary>
|
|
<para><b>Default value</b>: "{0} of {1}..."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.LoadingDataSourcePanelText">
|
|
<summary>
|
|
<para><b>Default value</b>: "Loading data source"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.MessageDuplicateItem">
|
|
<summary>
|
|
<para><b>Default value</b>: "The collection already contains the '{0}' item"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.MessageDuplicateItemName">
|
|
<summary>
|
|
<para><b>Default value</b>: "This collection already contains an item with the '{0}' name"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.MessageInvalidItemName">
|
|
<summary>
|
|
<para><b>Default value</b>: "Item name cannot be null or an empty string"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.MessageNonexistentColumn">
|
|
<summary>
|
|
<para><b>Default value</b>: "Column '{0}'.'{1}' does not exist."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.MessageNonexistentQuery">
|
|
<summary>
|
|
<para><b>Default value</b>: "Query '{0}' does not exist."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.MessageNullItem">
|
|
<summary>
|
|
<para><b>Default value</b>: "Cannot add a null value to the collection"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.MessageWrongCharacterItemName">
|
|
<summary>
|
|
<para><b>Default value</b>: "Item name '{0}' contains wrong characters"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.MessageWrongCharacterParameterName">
|
|
<summary>
|
|
<para><b>Default value</b>: "Parameter name '{0}' contains wrong characters"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.NoColumnsValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The following table contains no columns: \"{0}\"."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.NoRelationColumnsValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The specified relation does not contain key columns: \"{0}\"."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.NoTablesValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The collection of tables cannot be empty."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ODSErrorMissingMember">
|
|
<summary>
|
|
<para><b>Default value</b>: "A data member '{0}' does not exist."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ODSWizardErrorExceptionInCtor">
|
|
<summary>
|
|
<para><b>Default value</b>: "The default constructor of an ITypedList implementation has thrown an exception."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ODSWizardErrorExceptionInGetItemProperties">
|
|
<summary>
|
|
<para><b>Default value</b>: "The GetItemProperties method of an ITypedList has thrown an exception."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ODSWizardErrorNoDefaultCtor">
|
|
<summary>
|
|
<para><b>Default value</b>: "Cannot get item properties from IListSource without default constructor."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ODSWizardErrorStaticValue">
|
|
<summary>
|
|
<para><b>Default value</b>: "The type is static and it does not have any members returning IEnumerable."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ParameterlessConstructor">
|
|
<summary>
|
|
<para><b>Default value</b>: "default"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ParameterListEmpty">
|
|
<summary>
|
|
<para><b>Default value</b>: "none"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ParameterListNull">
|
|
<summary>
|
|
<para><b>Default value</b>: "null"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.PartialAggregationValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The aggregation should be applied either to all of columns or to none of them."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.PropertyGridBehaviorCategoryName">
|
|
<summary>
|
|
<para><b>Default value</b>: "Behavior"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.PropertyGridConnectionCategoryName">
|
|
<summary>
|
|
<para><b>Default value</b>: "Connection"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.PropertyGridDataCategoryName">
|
|
<summary>
|
|
<para><b>Default value</b>: "Data"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.PropertyGridDesignCategoryName">
|
|
<summary>
|
|
<para><b>Default value</b>: "Design"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.ProviderNotSupportedException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The following database provider is not supported: {0}."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.QueryBuilderAliasAlreadyExists">
|
|
<summary>
|
|
<para><b>Default value</b>: "The specified alias already exists."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.QueryBuilderCanJoin">
|
|
<summary>
|
|
<para><b>Default value</b>: "Can join {0}"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.QueryBuilderInvalidFilter">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.QueryBuilderJoinEditorMissingData">
|
|
<summary>
|
|
<para><b>Default value</b>: "Not all parts of the expression are specified."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.QueryBuilderJoinedOn">
|
|
<summary>
|
|
<para><b>Default value</b>: "Joined on {0}"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.QueryBuilderNothingSelected">
|
|
<summary>
|
|
<para><b>Default value</b>: "No column has been selected. Please select at least one column to proceed."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.QueryDesignerJoinExpressionElementSeparator">
|
|
<summary>
|
|
<para><b>Default value</b>: ", "
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.QueryDesignerJoinExpressionPattern">
|
|
<summary>
|
|
<para><b>Default value</b>: "{0} on {1}"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.QueryPropertyGridCommonCategoryName">
|
|
<summary>
|
|
<para><b>Default value</b>: "Common"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.QueryPropertyGridCustomSqlCategoryName">
|
|
<summary>
|
|
<para><b>Default value</b>: "Custom SQL"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.QueryPropertyGridStoredProcCategoryName">
|
|
<summary>
|
|
<para><b>Default value</b>: "Stored Procedure"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.QueryPropertyGridTableSelectionCategoryName">
|
|
<summary>
|
|
<para><b>Default value</b>: "Table Selection"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.RebuildResultSchemaWaitFormText">
|
|
<summary>
|
|
<para><b>Default value</b>: "The Field List is being populated..."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.RelationColumnNotInSchemaValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The schema does not contain the following relation column: \"{0}\".\"{1}\"."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.RelationColumnNullValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The relation column cannot be null."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.RelationEditorRelationTypeInnerJoin">
|
|
<summary>
|
|
<para><b>Default value</b>: "Inner join"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.RelationEditorRelationTypeLeftOuterJoin">
|
|
<summary>
|
|
<para><b>Default value</b>: "Left outer join"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.RelationEditorRelationTypeMasterDetail">
|
|
<summary>
|
|
<para><b>Default value</b>: "Master-detail relation"
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.RelationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "Cannot set relation between columns '{0}'.'{1}' of type {2} and '{3}'.'{4}' of type {5}."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.RelationNullValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "A relation cannot be null."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.RelationTableNotSelectedValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The reference table has not been selected: \"{0}\"."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.SortingBySameColumnTwiceValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The following column is used as a sorting criterion more than once: \"{0}\".\"{1}\"."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.SqlStringEmptyValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The SQL string is null or empty."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.StoredProcNameNullValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The name of a stored procedure cannot be null."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.StoredProcNotInSchemaValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "Cannot find the specified stored procedure: \"{0}\"."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.StoredProcParamCountValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "Parameter count mismatch: , is expected."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.StoredProcParamNameValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "Parameter name mismatch: , is expected."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.StoredProcParamNullValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "A parameter cannot be null."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.StoredProcParamTypeValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "Parameter type mismatch: , is expected."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.TableNotInSchemaValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The schema does not contain the specified table: \"{0}\"."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.TableNullValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "A table cannot be null."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.TablesNotRelatedValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The following tables have no relations: \"{0}\"."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.UnnamedColumnValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The column name is not specified."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.UnnamedTableValidationException">
|
|
<summary>
|
|
<para><b>Default value</b>: "The table name is not specified."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.WizardDataConnectionNameExistsMessage">
|
|
<summary>
|
|
<para><b>Default value</b>: "A data connection with the specified name already exists. Please specify a different connection name."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.WizardEmptyConnectionNameMessage">
|
|
<summary>
|
|
<para><b>Default value</b>: "The name cannot be null, empty or contain only whitespaces."
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessStringId.WizardNoEFDataContextsMessage">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.DatabaseConnectionException">
|
|
|
|
<summary>
|
|
<para>The exception occurring after a data source connection has failed.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.DatabaseConnectionException.#ctor(System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the DatabaseConnectionException class with the specified message.
|
|
</para>
|
|
</summary>
|
|
<param name="message">
|
|
A <see cref="T:System.String"/> value, specifying the message displayed when a database connection fails.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.DatabaseConnectionException.#ctor(System.String,System.Exception)">
|
|
<summary>
|
|
<para>Initializes a new instance of the DatabaseConnectionException class with the specified message and exception details.
|
|
</para>
|
|
</summary>
|
|
<param name="message">
|
|
A <see cref="T:System.String"/> value, specifying the message displayed when a database connection fails.
|
|
|
|
</param>
|
|
<param name="innerException">
|
|
A <see cref="T:System.Exception"/> object, specifying the error details.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.EntityFramework.EFParameterCollection">
|
|
|
|
<summary>
|
|
<para>A collection of stored procedure parameters.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFParameterCollection.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFParameterCollection class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFParameterCollection.AddRange(DevExpress.DataAccess.EntityFramework.EFParameter[])">
|
|
<summary>
|
|
<para>Appends an array of stored procedure parameters to the collection.
|
|
</para>
|
|
</summary>
|
|
<param name="parameters">
|
|
An array of <see cref="T:DevExpress.DataAccess.EntityFramework.EFParameter"/> objects to append to the collection.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.ValidationException">
|
|
|
|
<summary>
|
|
<para>The exception occurring after a SQL string validation has failed.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.ColumnInfo">
|
|
|
|
<summary>
|
|
<para>Identifies the data column addressed by an associated SQL query.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.ColumnInfo.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the ColumnInfo class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.ColumnInfo.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the ColumnInfo class with the specified alias and name.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value, specifying the column info name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.ColumnInfo.Name"/> property.
|
|
|
|
</param>
|
|
<param name="alias">
|
|
A <see cref="T:System.String"/> value, specifying the column info alias. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.ColumnInfo.Alias"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.ColumnInfo.#ctor(System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the ColumnInfo class with the specified name.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value, specifying the column info name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.ColumnInfo.Name"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.ColumnInfo.#ctor(System.String,DevExpress.DataAccess.Sql.AggregationType,System.String)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="name">
|
|
|
|
</param>
|
|
<param name="aggregation">
|
|
|
|
</param>
|
|
<param name="alias">
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.ColumnInfo.#ctor(System.String,DevExpress.DataAccess.Sql.AggregationType)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="name">
|
|
|
|
</param>
|
|
<param name="aggregation">
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.ColumnInfo.ActualName">
|
|
<summary>
|
|
<para>Returns a string identifier of a data column.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, identifying the column.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.ColumnInfo.Aggregation">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<value> </value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.ColumnInfo.Alias">
|
|
<summary>
|
|
<para>Specifies the alias that is used to refer to a data column instead of its name.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the data column alias.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.ColumnInfo.HasAlias">
|
|
<summary>
|
|
<para>Indicates whether a data column is identified by its name or alias.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b> if the data column is assigned an alias; otherwise <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.ColumnInfo.Name">
|
|
<summary>
|
|
<para>Specifies the name by which a data column is referred to in a database schema.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the data column name.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.TableInfo">
|
|
|
|
<summary>
|
|
<para>Identifies the data table addressed by an associated SQL query.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableInfo.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the TableInfo class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableInfo.#ctor(System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the TableInfo class with the specified name.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value, specifying the table info name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.TableInfo.Name"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableInfo.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the TableInfo class with the specified alias and name.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value, specifying the table info name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.TableInfo.Name"/> property.
|
|
|
|
</param>
|
|
<param name="alias">
|
|
A <see cref="T:System.String"/> value, specifying the table info alias. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.TableInfo.Alias"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.TableInfo.ActualName">
|
|
<summary>
|
|
<para>Indicates the name of the associated data table, as defined in the data source to which it belongs.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, identifying the data table associated with the current TableInfo instance.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.TableInfo.Alias">
|
|
<summary>
|
|
<para>Specifies the alias that is used to refer to a data table instead of its name.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the data table alias.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.TableInfo.HasAlias">
|
|
<summary>
|
|
<para>Indicates whether a data table is identified by its name or alias.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b> if the data table is assigned an alias; otherwise <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.TableInfo.Name">
|
|
<summary>
|
|
<para>Specifies the name by which a data table is referred to in a database schema.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the data table name.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableInfo.SelectColumn(System.String)">
|
|
<summary>
|
|
<para>Selects the specified data column from the table.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value, specifying the column name.
|
|
|
|
</param>
|
|
<returns>A <see cref="T:DevExpress.Data.XtraReports.DataProviders.ColumnInfo"/> object.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableInfo.SelectColumn(System.String,DevExpress.DataAccess.Sql.AggregationType,System.String)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="name">
|
|
|
|
</param>
|
|
<param name="aggregation">
|
|
|
|
</param>
|
|
<param name="alias">
|
|
|
|
</param>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableInfo.SelectColumns(System.String[])">
|
|
<summary>
|
|
<para>Selects the specified data column range from the table.
|
|
</para>
|
|
</summary>
|
|
<param name="columns">
|
|
An array of <see cref="T:System.String"/> values, specifying the column names.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.TableInfo.SelectedColumns">
|
|
<summary>
|
|
<para>Returns the list of data tables embodied in the TableInfo.
|
|
</para>
|
|
</summary>
|
|
<value>A collection of <see cref="T:DevExpress.DataAccess.Sql.ColumnInfo"/> objects, identifying the columns obtained from a data source as a query execution result.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.RelationInfo">
|
|
|
|
<summary>
|
|
<para>Identifies the data relation defined by an associated SQL query.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfo.#ctor(System.String,System.String,System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationInfo class with the specified tables and key columns.
|
|
</para>
|
|
</summary>
|
|
<param name="parentTable">
|
|
A <see cref="T:System.String"/> value, specifying the parent table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.ParentTable"/> property.
|
|
|
|
</param>
|
|
<param name="nestedTable">
|
|
A <see cref="T:System.String"/> value, specifying the nested table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.NestedTable"/> property.
|
|
|
|
</param>
|
|
<param name="keyColumns">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> objects. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.KeyColumns"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfo.#ctor(System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationInfo class with the specified tables and their key columns.
|
|
</para>
|
|
</summary>
|
|
<param name="parentTable">
|
|
A <see cref="T:System.String"/> value, specifying the parent table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.ParentTable"/> property.
|
|
|
|
</param>
|
|
<param name="nestedTable">
|
|
A <see cref="T:System.String"/> value, specifying the nested table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.NestedTable"/> property.
|
|
|
|
</param>
|
|
<param name="parentKeyColumn">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> objects, specifying the parent column keys. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.KeyColumns"/> property.
|
|
|
|
</param>
|
|
<param name="nestedKeyColumn">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> objects, specifying the nested column keys. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.KeyColumns"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfo.#ctor(System.String,System.String,DevExpress.Xpo.DB.JoinType,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationInfo class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="parentTable">
|
|
A <see cref="T:System.String"/> value, specifying the parent table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.ParentTable"/> property.
|
|
|
|
</param>
|
|
<param name="nestedTable">
|
|
A <see cref="T:System.String"/> value, specifying the nested table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.NestedTable"/> property.
|
|
|
|
</param>
|
|
<param name="joinType">
|
|
A <see cref="T:DevExpress.Xpo.DB.JoinType"/> enumeration value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.JoinType"/> property.
|
|
|
|
</param>
|
|
<param name="parentKeyColumn">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> objects, specifying the parent column keys. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.KeyColumns"/> property.
|
|
|
|
</param>
|
|
<param name="nestedKeyColumn">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> objects, specifying the nested column keys. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.KeyColumns"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfo.#ctor(System.String,System.String,DevExpress.DataAccess.Sql.RelationColumnInfo)">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationInfo class with the specified tables and a key column.
|
|
</para>
|
|
</summary>
|
|
<param name="parentTable">
|
|
A <see cref="T:System.String"/> value, specifying the parent table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.ParentTable"/> property.
|
|
|
|
</param>
|
|
<param name="nestedTable">
|
|
A <see cref="T:System.String"/> value, specifying the nested table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.NestedTable"/> property.
|
|
|
|
</param>
|
|
<param name="keyColumn">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> object. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.KeyColumns"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfo.#ctor(System.String,System.String,DevExpress.Xpo.DB.JoinType,DevExpress.DataAccess.Sql.RelationColumnInfo)">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationInfo class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="parentTable">
|
|
A <see cref="T:System.String"/> value, specifying the parent table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.ParentTable"/> property.
|
|
|
|
</param>
|
|
<param name="nestedTable">
|
|
A <see cref="T:System.String"/> value, specifying the nested table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.NestedTable"/> property.
|
|
|
|
</param>
|
|
<param name="joinType">
|
|
A <see cref="T:DevExpress.Xpo.DB.JoinType"/> enumeration value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.JoinType"/> property.
|
|
|
|
</param>
|
|
<param name="keyColumn">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> object. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.KeyColumns"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfo.#ctor(System.String,System.String,DevExpress.Xpo.DB.JoinType,System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationInfo class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="parentTable">
|
|
A <see cref="T:System.String"/> value, specifying the parent table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.ParentTable"/> property.
|
|
|
|
</param>
|
|
<param name="nestedTable">
|
|
A <see cref="T:System.String"/> value, specifying the nested table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.NestedTable"/> property.
|
|
|
|
</param>
|
|
<param name="joinType">
|
|
A <see cref="T:DevExpress.Xpo.DB.JoinType"/> enumeration value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.JoinType"/> property.
|
|
|
|
</param>
|
|
<param name="keyColumns">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> objects, specifying the parent column keys. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.KeyColumns"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfo.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationInfo class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfo.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationInfo class with the specified parent and nested tables.
|
|
</para>
|
|
</summary>
|
|
<param name="parentTable">
|
|
A <see cref="T:System.String"/> value, specifying the parent table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.ParentTable"/> property.
|
|
|
|
</param>
|
|
<param name="nestedTable">
|
|
A <see cref="T:System.String"/> value, specifying the nested table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.NestedTable"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfo.#ctor(System.String,System.String,DevExpress.Xpo.DB.JoinType)">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationInfo class with the specified tables and join type.
|
|
</para>
|
|
</summary>
|
|
<param name="parentTable">
|
|
A <see cref="T:System.String"/> value, specifying the parent table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.ParentTable"/> property.
|
|
|
|
</param>
|
|
<param name="nestedTable">
|
|
A <see cref="T:System.String"/> value, specifying the nested table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.NestedTable"/> property.
|
|
|
|
</param>
|
|
<param name="joinType">
|
|
A <see cref="T:DevExpress.Xpo.DB.JoinType"/> enumeration value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.JoinType"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.RelationInfo.JoinType">
|
|
<summary>
|
|
<para>Specifies the type of the Join statement that is used to obtain data records from two or more datasource tables.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.Xpo.DB.JoinType"/> enumeration value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.RelationInfo.KeyColumns">
|
|
<summary>
|
|
<para>Returns the list of <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> objects assigned to the current RelationInfo.
|
|
</para>
|
|
</summary>
|
|
<value>A DevExpress.DataAccess.Sql.RelationColumnInfoList object.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.RelationInfo.NestedTable">
|
|
<summary>
|
|
<para>Specifies the nested table name.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the nested table name.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.RelationInfo.ParentTable">
|
|
<summary>
|
|
<para>Specifies the parent table name.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the parent table name.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationInfo.ToString">
|
|
<summary>
|
|
<para>Returns the textual representation of RelationInfo.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.String"/> value.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.TableQuery">
|
|
|
|
<summary>
|
|
<para>A set of columns (from a single table or multiple joined tables), which forms a SELECT statement when executing a query.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableQuery.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the TableQuery class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableQuery.#ctor(System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the TableQuery class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="queryName">
|
|
A <see cref="T:System.String"/> value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.SqlQuery.Name"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableQuery.AddRelation(System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Creates a master-detail relation between two data tables across the specified key columns.
|
|
</para>
|
|
</summary>
|
|
<param name="parentTable">
|
|
A <see cref="T:System.String"/> value, specifying the parent table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.ParentTable"/> property of the created <see cref="T:DevExpress.DataAccess.Sql.RelationInfo"/> object.
|
|
|
|
</param>
|
|
<param name="nestedTable">
|
|
A <see cref="T:System.String"/> value, specifying the nested table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationInfo.NestedTable"/> property of the created <see cref="T:DevExpress.DataAccess.Sql.RelationInfo"/> object.
|
|
|
|
</param>
|
|
<param name="parentKeyColumn">
|
|
A <see cref="T:System.String"/> value, specifying the parent key column name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationColumnInfo.ParentKeyColumn"/> property of the created <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> object.
|
|
|
|
</param>
|
|
<param name="nestedKeyColumn">
|
|
A <see cref="T:System.String"/> value, specifying the nested key column name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationColumnInfo.NestedKeyColumn"/> property of the created <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> object.
|
|
|
|
</param>
|
|
<returns>A <see cref="T:DevExpress.DataAccess.Sql.RelationInfo"/> object, identifying the data relation.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableQuery.AddTable(System.String)">
|
|
<summary>
|
|
<para>Includes a data table with the specified name into the query.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value, specifying the data table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.TableInfo.ActualName"/> property of the associated <see cref="T:DevExpress.DataAccess.Sql.TableInfo"/> object.
|
|
|
|
</param>
|
|
<returns>A <see cref="T:DevExpress.DataAccess.Sql.TableInfo"/> object, identifying the data table.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.TableQuery.FilterString">
|
|
<summary>
|
|
<para>Specifies the filter criteria to add to the SELECT statement of the TableQuery.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, corresponding to the SELECT statement of the query.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableQuery.FindTable(System.String)">
|
|
<summary>
|
|
<para>Returns the data table with the specified name.
|
|
</para>
|
|
</summary>
|
|
<param name="actualName">
|
|
A <see cref="T:System.String"/> value, specifying the data table name.
|
|
|
|
</param>
|
|
<returns>A <see cref="T:DevExpress.Data.XtraReports.DataProviders.TableInfo"/> object, specifying the data table.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableQuery.GetSql(DevExpress.DataAccess.Sql.DBSchema)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="schema">
|
|
|
|
</param>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.TableQuery.Grouping">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<value> </value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.TableQuery.Relations">
|
|
<summary>
|
|
<para>Provides access to the collection of data relations defined for the TableQuery.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.Sql.RelationInfoList"/> value, specifying the collection of master-detail relations.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.TableQuery.Sorting">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<value> </value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.TableQuery.Tables">
|
|
<summary>
|
|
<para>Provides access to the collection of data tables defined for the TableQuery.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.Sql.TableInfoList"/> value, specifying the collection of data tables.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableQuery.Validate">
|
|
<summary>
|
|
<para>Checks the validity of the TableQuery.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.TableQuery.Validate(DevExpress.DataAccess.Sql.DBSchema)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="schema">
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.StoredProcQuery">
|
|
|
|
<summary>
|
|
<para>A stored procedure call.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.StoredProcQuery.#ctor(System.String)">
|
|
<summary>
|
|
<para>Obsolete. Initializes a new instance of the StoredProcQuery class with the specified stored procedure.
|
|
</para>
|
|
</summary>
|
|
<param name="storedProcName">
|
|
A <see cref="T:System.String"/> value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.StoredProcQuery.StoredProcName"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.StoredProcQuery.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the StoredProcQuery class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.StoredProcQuery.#ctor(System.String,System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Obsolete. Initializes a new instance of the StoredProcQuery class with the specified stored procedure and parameters.
|
|
</para>
|
|
</summary>
|
|
<param name="storedProcName">
|
|
A <see cref="T:System.String"/> value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.StoredProcQuery.StoredProcName"/> property.
|
|
|
|
</param>
|
|
<param name="parameters">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.QueryParameter"/> objects. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.SqlQuery.Parameters"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.StoredProcQuery.#ctor(System.String,System.String,System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Initializes a new instance of the StoredProcQuery class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="queryName">
|
|
A <see cref="T:System.String"/> value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.SqlQuery.Name"/> property.
|
|
|
|
</param>
|
|
<param name="storedProcName">
|
|
A <see cref="T:System.String"/> value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.StoredProcQuery.StoredProcName"/> property.
|
|
|
|
</param>
|
|
<param name="parameters">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.QueryParameter"/> objects. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.SqlQuery.Parameters"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.StoredProcQuery.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the StoredProcQuery class with the specified query and stored procedure.
|
|
</para>
|
|
</summary>
|
|
<param name="queryName">
|
|
A <see cref="T:System.String"/> value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.SqlQuery.Name"/> property.
|
|
|
|
</param>
|
|
<param name="storedProcName">
|
|
A <see cref="T:System.String"/> value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.StoredProcQuery.StoredProcName"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.StoredProcQuery.StoredProcName">
|
|
<summary>
|
|
<para>Specifies the stored procedure to use in the query.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the stored procedure name.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.StoredProcQuery.Validate">
|
|
<summary>
|
|
<para>Checks the validity of the StoredProcQuery.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.StoredProcQuery.Validate(DevExpress.DataAccess.Sql.DBSchema)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="schema">
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.CustomSqlQuery">
|
|
|
|
<summary>
|
|
<para>A custom query.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.CustomSqlQuery.#ctor(System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the CustomSqlQuery class with the specified query string.
|
|
</para>
|
|
</summary>
|
|
<param name="sql">
|
|
A <see cref="T:System.String"/> value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.CustomSqlQuery.Sql"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.CustomSqlQuery.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the CustomSqlQuery class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.CustomSqlQuery.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the CustomSqlQuery class with the specified name and query string.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.SqlQuery.Name"/> property.
|
|
|
|
</param>
|
|
<param name="sql">
|
|
A <see cref="T:System.String"/> value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.CustomSqlQuery.Sql"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.CustomSqlQuery.Sql">
|
|
<summary>
|
|
<para>Specifies the custom query string.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the query.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.CustomSqlQuery.Validate">
|
|
<summary>
|
|
<para>Checks the validity of the CustomSqlQuery.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.CustomSqlQuery.Validate(DevExpress.DataAccess.Sql.DBSchema)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="schema">
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.QueryParameter">
|
|
|
|
<summary>
|
|
<para>A parameter passed to a <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/>.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.QueryParameter.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the QueryParameter class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.QueryParameter.#ctor(System.String,System.Type,System.Object)">
|
|
<summary>
|
|
<para>Initializes a new instance of the QueryParameter class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value, specifying the parameter name.
|
|
|
|
</param>
|
|
<param name="type">
|
|
A <see cref="T:System.String"/> value, specifying the parameter type.
|
|
|
|
</param>
|
|
<param name="value">
|
|
A <see cref="T:System.String"/> value, specifying the parameter value.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.SqlQuery">
|
|
|
|
<summary>
|
|
<para>A formalized description of a database query.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlQuery.Name">
|
|
<summary>
|
|
<para>Specifies the query name.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the query name.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlQuery.Parameters">
|
|
<summary>
|
|
<para>Provides access to the collection of parameters defined for the SqlQuery.
|
|
</para>
|
|
</summary>
|
|
<value>A collection of <see cref="T:DevExpress.DataAccess.Sql.QueryParameter"/> objects.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQuery.ToString">
|
|
<summary>
|
|
<para>Returns the textual representation of SqlQuery.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.String"/> value.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQuery.Validate">
|
|
<summary>
|
|
<para>Checks the validity of the SqlQuery.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQuery.Validate(DevExpress.DataAccess.Sql.DBSchema)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="schema">
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.MasterDetailInfo">
|
|
|
|
<summary>
|
|
<para>Identifies the master-detail relation defined by associated SQL queries.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.MasterDetailInfo.#ctor(System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the MasterDetailInfo class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="masterQueryName">
|
|
A <see cref="T:System.String"/> value, specifying the master query name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.MasterDetailInfo.MasterQueryName"/> property.
|
|
|
|
</param>
|
|
<param name="detailQueryName">
|
|
A <see cref="T:System.String"/> value, specifying the detail query name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.MasterDetailInfo.DetailQueryName"/> property.
|
|
|
|
</param>
|
|
<param name="masterKeyColumn">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> object. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.MasterDetailInfo.KeyColumns"/> property.
|
|
|
|
</param>
|
|
<param name="detailKeyColumn">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> object. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.MasterDetailInfo.KeyColumns"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.MasterDetailInfo.#ctor(System.String,System.String,DevExpress.DataAccess.Sql.RelationColumnInfo)">
|
|
<summary>
|
|
<para>Initializes a new instance of the MasterDetailInfo class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="masterQueryName">
|
|
A <see cref="T:System.String"/> value, specifying the master query name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.MasterDetailInfo.MasterQueryName"/> property.
|
|
|
|
</param>
|
|
<param name="detailQueryName">
|
|
A <see cref="T:System.String"/> value, specifying the detail query name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.MasterDetailInfo.DetailQueryName"/> property.
|
|
|
|
</param>
|
|
<param name="keyColumn">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> object. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.MasterDetailInfo.KeyColumns"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.MasterDetailInfo.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the MasterDetailInfo class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.MasterDetailInfo.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the MasterDetailInfo class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="master">
|
|
A <see cref="T:System.String"/> value, specifying the master query name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.MasterDetailInfo.MasterQueryName"/> property.
|
|
|
|
</param>
|
|
<param name="detail">
|
|
A <see cref="T:System.String"/> value, specifying the detail query name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.MasterDetailInfo.DetailQueryName"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.MasterDetailInfo.#ctor(System.String,System.String,System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Initializes a new instance of the MasterDetailInfo class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="masterQueryName">
|
|
A <see cref="T:System.String"/> value, specifying the master query name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.MasterDetailInfo.MasterQueryName"/> property.
|
|
|
|
</param>
|
|
<param name="detailQueryName">
|
|
A <see cref="T:System.String"/> value, specifying the detail query name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.MasterDetailInfo.DetailQueryName"/> property.
|
|
|
|
</param>
|
|
<param name="keyColumns">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> objects. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.MasterDetailInfo.KeyColumns"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.MasterDetailInfo.DetailQueryName">
|
|
<summary>
|
|
<para>Specifies the detail query name of the master-detail relation.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the detail query name.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.MasterDetailInfo.GenerateName">
|
|
<summary>
|
|
<para>Generates the default name for the master-detail relation.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.String"/> value, specifying the relation's name.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.MasterDetailInfo.GetDetailedDescription">
|
|
<summary>
|
|
<para>Returns detailed information about the master-detail relation, including the queries that are related and their corresponding key columns.
|
|
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.String"/> value, describing the master-detail relation.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.MasterDetailInfo.HasCustomName">
|
|
<summary>
|
|
<para>Indicates whether or not the name of a master-detail relation has been specified.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b> if the relation has been provided with a custom name; otherwise <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.MasterDetailInfo.KeyColumns">
|
|
<summary>
|
|
<para>Provides access to the collection of key columns defined for the master-detail relation.
|
|
</para>
|
|
</summary>
|
|
<value>A collection of <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> objects.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.MasterDetailInfo.MasterQueryName">
|
|
<summary>
|
|
<para>Specifies the master query name of the master-detail relation.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the master query name.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.MasterDetailInfo.Name">
|
|
<summary>
|
|
<para>Specifies the relation name.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the relation name.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.MasterDetailInfo.ToString">
|
|
<summary>
|
|
<para>Returns the textual representation of MasterDetailInfo.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.String"/> value.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.RelationColumnInfo">
|
|
|
|
<summary>
|
|
<para>Stores the master and nested keys of a data relation column.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationColumnInfo.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationColumnInfo class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="parentKeyColumn">
|
|
A <see cref="T:System.String"/> value, specifying the parent key column name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationColumnInfo.ParentKeyColumn"/> property.
|
|
|
|
</param>
|
|
<param name="nestedKeyColumn">
|
|
A <see cref="T:System.String"/> value, specifying the nested key column name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationColumnInfo.NestedKeyColumn"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationColumnInfo.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationColumnInfo class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationColumnInfo.#ctor(System.String,System.String,DevExpress.DataAccess.Sql.ConditionType)">
|
|
<summary>
|
|
<para>Initializes a new instance of the RelationColumnInfo class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="parentKeyColumn">
|
|
A <see cref="T:System.String"/> value, specifying the parent key column name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationColumnInfo.ParentKeyColumn"/> property.
|
|
|
|
</param>
|
|
<param name="nestedKeyColumn">
|
|
A <see cref="T:System.String"/> value, specifying the nested key column name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationColumnInfo.NestedKeyColumn"/> property.
|
|
|
|
</param>
|
|
<param name="conditionType">
|
|
A <see cref="T:System.String"/> value, specifying the condition applied to the current column. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.RelationColumnInfo.ConditionOperator"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.RelationColumnInfo.ConditionOperator">
|
|
<summary>
|
|
<para>Specifies the condition applied to the current column.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the condition applied to the current column.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.RelationColumnInfo.NestedKeyColumn">
|
|
<summary>
|
|
<para>Specifies the name of the nested key column in a master-detail relation.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the name of the nested key column.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.RelationColumnInfo.ParentKeyColumn">
|
|
<summary>
|
|
<para>Specifies the name of the parent key column in a master-detail relation.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the name of the parent key column.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.RelationColumnInfo.ToString">
|
|
<summary>
|
|
<para>Returns the textual representation of RelationColumnInfo.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.String"/> value.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.EntityFramework.EFConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to an Entity Framework data source.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFConnectionParameters.#ctor(System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFConnectionParameters class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="contextName">
|
|
A <see cref="T:System.String"/> value.
|
|
|
|
</param>
|
|
<param name="assemblyPath">
|
|
A <see cref="T:System.String"/> value.
|
|
|
|
</param>
|
|
<param name="connectionStringName">
|
|
A <see cref="T:System.String"/> value.
|
|
|
|
</param>
|
|
<param name="connectionString">
|
|
A <see cref="T:System.String"/> value.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFConnectionParameters.#ctor(System.Type,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFConnectionParameters class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="source">
|
|
A <see cref="T:System.Type"/> object.
|
|
|
|
</param>
|
|
<param name="connectionStringName">
|
|
A <see cref="T:System.String"/> value.
|
|
|
|
</param>
|
|
<param name="connectionString">
|
|
A <see cref="T:System.String"/> value.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFConnectionParameters.#ctor(System.Type,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFConnectionParameters class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="source">
|
|
A <see cref="T:System.Type"/> object.
|
|
|
|
</param>
|
|
<param name="connectionStringName">
|
|
A <see cref="T:System.String"/> value.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFConnectionParameters.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFConnectionParameters class with the specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="contextName">
|
|
A <see cref="T:System.String"/> value.
|
|
|
|
</param>
|
|
<param name="assemblyPath">
|
|
A <see cref="T:System.String"/> value.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFConnectionParameters.#ctor(System.Type)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFConnectionParameters class with the specified source.
|
|
</para>
|
|
</summary>
|
|
<param name="source">
|
|
A <see cref="T:System.Type"/> object.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFConnectionParameters.#ctor(DevExpress.DataAccess.EntityFramework.EFConnectionParameters)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
<param name="other">
|
|
An <see cref="T:DevExpress.DataAccess.EntityFramework.EFConnectionParameters"/> object.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFConnectionParameters.ConnectionString">
|
|
<summary>
|
|
<para>Specifies a connection string used by an Entity Framework data source to establish connection to data.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the connection string.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFConnectionParameters.ConnectionStringName">
|
|
<summary>
|
|
<para>Specifies the name of a connection string used by an Entity Framework data source.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the name of a connection string.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFConnectionParameters.CustomAssemblyPath">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<value> </value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFConnectionParameters.CustomContextName">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<value> </value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFConnectionParameters.Source">
|
|
<summary>
|
|
<para>Specifies the type of an Entity Framework database context used to connect to data.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.Type"/> object specifying the type of a database context.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.MasterDetailInfoCollection">
|
|
|
|
<summary>
|
|
<para>A collection of <see cref="T:DevExpress.DataAccess.Sql.MasterDetailInfo"/> objects.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.MasterDetailInfoCollection.Add(System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Adds the specified master-detail relation to the collection.
|
|
</para>
|
|
</summary>
|
|
<param name="masterQueryName">
|
|
A <see cref="T:System.String"/> value, specifying the name of the master query.
|
|
|
|
</param>
|
|
<param name="detailQueryName">
|
|
A <see cref="T:System.String"/> value, specifying the name of the detail query.
|
|
|
|
</param>
|
|
<param name="masterKeyColumn">
|
|
A <see cref="T:System.String"/> value, specifying the key column of the master query.
|
|
|
|
</param>
|
|
<param name="detailKeyColumn">
|
|
A <see cref="T:System.String"/> value, specifying the key column of the detail query.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.MasterDetailInfoCollection.Add(System.String,System.String,System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Adds the specified master-detail relation to the collection.
|
|
</para>
|
|
</summary>
|
|
<param name="masterQueryName">
|
|
A <see cref="T:System.String"/> value, specifying the name of the master query.
|
|
|
|
</param>
|
|
<param name="detailQueryName">
|
|
A <see cref="T:System.String"/> value, specifying the name of the detail query.
|
|
|
|
</param>
|
|
<param name="keyColumns">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.RelationColumnInfo"/> objects.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.MasterDetailInfoCollection.AddRange(DevExpress.DataAccess.Sql.MasterDetailInfo[])">
|
|
<summary>
|
|
<para>Appends an array of <see cref="T:DevExpress.DataAccess.Sql.MasterDetailInfo"/> objects to the collection.
|
|
</para>
|
|
</summary>
|
|
<param name="infos">
|
|
An array of the <see cref="T:DevExpress.DataAccess.Sql.MasterDetailInfo"/> objects to append to the collection.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.MasterDetailInfoCollection.FindIndex(System.Predicate`1)">
|
|
<summary>
|
|
<para>Indicates the index of a specified data relation within the collection.
|
|
</para>
|
|
</summary>
|
|
<param name="match">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.MasterDetailInfo"/> predicate, specifying the data relation to locate in the collection.
|
|
|
|
</param>
|
|
<returns>A zero-based integer value, specifying the element's position within the collection.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.MasterDetailInfoCollection.Item(System.String)">
|
|
<summary>
|
|
<para>Provides access to an individual item in the collection by its name.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value, specifying the data relation name.
|
|
|
|
</param>
|
|
<value>A <see cref="T:DevExpress.DataAccess.Sql.MasterDetailInfo"/> object.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.MasterDetailInfoCollection.Owner">
|
|
<summary>
|
|
<para>Indicates the SQL data source to which the collection of master-detail relations belongs.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/> object that is the owner of the collection.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.SqlQueryCollection">
|
|
|
|
<summary>
|
|
<para>A collection of <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> objects.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.Add(DevExpress.DataAccess.Sql.SqlQuery)">
|
|
<summary>
|
|
<para>Adds the specified query to the collection.
|
|
</para>
|
|
</summary>
|
|
<param name="item">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.AddRange(DevExpress.DataAccess.Sql.SqlQuery[])">
|
|
<summary>
|
|
<para>Appends an array of SQL queries to the SqlQueryCollection.
|
|
</para>
|
|
</summary>
|
|
<param name="items">
|
|
An array of <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> objects to append to the collection.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.AddRange(System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Appends a collection of SQL queries to the SqlQueryCollection.
|
|
</para>
|
|
</summary>
|
|
<param name="items">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> objects to append to the collection.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.CheckQueryName(DevExpress.DataAccess.Sql.SqlQuery)">
|
|
<summary>
|
|
<para>Checks whether or not a query with the specified name can be added to the SqlQueryCollection.
|
|
</para>
|
|
</summary>
|
|
<param name="query">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.Clear">
|
|
<summary>
|
|
<para>Removes all items from the collection.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.Contains(DevExpress.DataAccess.Sql.SqlQuery)">
|
|
<summary>
|
|
<para>Determines whether or not the collection contains the specified SQL query.
|
|
</para>
|
|
</summary>
|
|
<param name="item">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object to locate in the collection.
|
|
|
|
</param>
|
|
<returns><b>true</b> if the specified query is a member of the collection; otherwise, <b>false</b>.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.ContainsName(System.String)">
|
|
<summary>
|
|
<para>Indicates whether or not a query with the specified name exists in the SqlQueryCollection.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value, specifying the query name.
|
|
|
|
</param>
|
|
<returns><b>true</b> if a query with the specified name exists in the collection; otherwise <b>false</b>.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.CopyTo(DevExpress.DataAccess.Sql.SqlQuery[],System.Int32)">
|
|
<summary>
|
|
<para>Copies the entire SQL query collection to a one dimensional array starting at the specified index of the target array.
|
|
</para>
|
|
</summary>
|
|
<param name="array">
|
|
A one-dimensional array that is the destination for the <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> objects copied from the collection.
|
|
|
|
</param>
|
|
<param name="arrayIndex">
|
|
An integer value, specifying the zero-based index in the target array at which copying begins.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlQueryCollection.Count">
|
|
<summary>
|
|
<para>Counts the SQL queries that are available in a collection.
|
|
</para>
|
|
</summary>
|
|
<value>An integer value, specifying the item count.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.GenerateUniqueName(DevExpress.DataAccess.Sql.SqlQuery)">
|
|
<summary>
|
|
<para>Generates the unique name for a SQL query within the collection.
|
|
|
|
</para>
|
|
</summary>
|
|
<param name="query">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object.
|
|
|
|
</param>
|
|
<returns>A <see cref="T:System.String"/> value, specifying the unique query name.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.GetEnumerator">
|
|
<summary>
|
|
<para>Returns the queries stored in the SqlQueryCollection.
|
|
</para>
|
|
</summary>
|
|
<returns>A collection of <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> objects.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.IndexOf(DevExpress.DataAccess.Sql.SqlQuery)">
|
|
<summary>
|
|
<para>Returns the zero-based index of the specified SQL query in the collection.
|
|
</para>
|
|
</summary>
|
|
<param name="item">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object to locate in the collection.
|
|
|
|
</param>
|
|
<returns>An integer value, specifying the position of the specified query in the collection.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.Insert(System.Int32,DevExpress.DataAccess.Sql.SqlQuery)">
|
|
<summary>
|
|
<para>Inserts the specified SQL query into the collection at the specified position.
|
|
</para>
|
|
</summary>
|
|
<param name="index">
|
|
An zero-based integer, specifying the item's index position in the collection.
|
|
|
|
</param>
|
|
<param name="item">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object to insert into the collection.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlQueryCollection.Item(System.Int32)">
|
|
<summary>
|
|
<para>Provides indexed access to individual items in the collection.
|
|
</para>
|
|
</summary>
|
|
<param name="index">
|
|
A zero-based integer value, specifying the item's index position in the collection.
|
|
|
|
</param>
|
|
<value>A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlQueryCollection.Item(System.String)">
|
|
<summary>
|
|
<para>Provides access to an individual item in the collection by its name.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value, specifying the query name.
|
|
|
|
</param>
|
|
<value>A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.Remove(DevExpress.DataAccess.Sql.SqlQuery)">
|
|
<summary>
|
|
<para>Removes the specified query from the collection.
|
|
</para>
|
|
</summary>
|
|
<param name="item">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> object.
|
|
|
|
</param>
|
|
<returns><b>true</b> if the specified query has been found and removed; otherwise <b>false</b>.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlQueryCollection.RemoveAt(System.Int32)">
|
|
<summary>
|
|
<para>Removes the element at the specified index from the collection.
|
|
</para>
|
|
</summary>
|
|
<param name="index">
|
|
A zero-based integer, specifying the index of the object to remove.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.EntityFramework.EFDataSource">
|
|
|
|
<summary>
|
|
<para>An Entity Framework data source.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataSource.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFDataSource class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataSource.#ctor(DevExpress.DataAccess.EntityFramework.EFConnectionParameters,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFDataSource class with the specified connection parameters.
|
|
|
|
</para>
|
|
</summary>
|
|
<param name="connectionParameters">
|
|
An <see cref="T:DevExpress.DataAccess.EntityFramework.EFConnectionParameters"/> object containing parameters used to establish a data connection.
|
|
|
|
|
|
</param>
|
|
<param name="storedProcedureName">
|
|
A <see cref="T:System.String"/> specifying the name of a stored procedure.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataSource.#ctor(DevExpress.DataAccess.EntityFramework.EFConnectionParameters)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFDataSource class with specified connection parameters.
|
|
</para>
|
|
</summary>
|
|
<param name="connectionParameters">
|
|
An <see cref="T:DevExpress.DataAccess.EntityFramework.EFConnectionParameters"/> object containing parameters used to establish a data connection.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataSource.#ctor(System.ComponentModel.IContainer)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFDataSource class with a specified container.
|
|
</para>
|
|
</summary>
|
|
<param name="container">
|
|
An object implementing the <see cref="T:System.ComponentModel.IContainer"/> interface that specifies the container of the EFDataSource.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataSource.Connection">
|
|
<summary>
|
|
<para>Specifies the connection for an EFDataSource.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.EntityFramework.EFDataConnection"/> object.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataSource.ConnectionName">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<value>
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataSource.ConnectionParameters">
|
|
<summary>
|
|
<para>Specifies the connection parameters of an Entity Framework data source.
|
|
</para>
|
|
</summary>
|
|
<value>An <see cref="T:DevExpress.DataAccess.EntityFramework.EFConnectionParameters"/> object.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataSource.ConnectionString">
|
|
<summary>
|
|
<para>Specifies a connection string used to connect to data.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the connection string.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataSource.ConnectionStringName">
|
|
<summary>
|
|
<para>Specifies the name of a connection string used to connect to data.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the name of a connection string.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataSource.Fill">
|
|
<summary>
|
|
<para>Retrieves data from the data source.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataSource.GetItemProperties(System.ComponentModel.PropertyDescriptor[])">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<param name="listAccessors">
|
|
|
|
|
|
</param>
|
|
<returns>
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataSource.GetListName(System.ComponentModel.PropertyDescriptor[])">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<param name="listAccessors">
|
|
|
|
|
|
</param>
|
|
<returns>
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataSource.LoadFromXml(System.Xml.Linq.XElement)">
|
|
<summary>
|
|
<para>Loads the Entity Framework data source schema definition from XML.
|
|
</para>
|
|
</summary>
|
|
<param name="element">
|
|
A <see cref="T:System.Xml.Linq.XElement"/> value containing an XML definition of the data source schema.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataSource.ParametersSerialized">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<value>
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataSource.ProceduresSerialized">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<value>
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFDataSource.SaveToXml">
|
|
<summary>
|
|
<para>Saves the XML definition of the Entity Framework data source schema.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.Xml.Linq.XElement"/> value containing an XML definition of the data source schema.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataSource.Source">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<value>
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataSource.StoredProcedureName">
|
|
<summary>
|
|
<para>Specifies the name of a stored procedure providing data to an Entity Framework data source,
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> specifying the name of the stored procedure.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataSource.StoredProcedureParameters">
|
|
<summary>
|
|
<para>Specifies a collection of parameters that are passed to a stored procedure.
|
|
</para>
|
|
</summary>
|
|
<value>A list of <see cref="T:DevExpress.DataAccess.EntityFramework.EFParameter"/> objects.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFDataSource.StoredProcedures">
|
|
<summary>
|
|
<para>Gets the collection of stored procedures provided by an EFDataSource.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo"/> object specifying a collection of stored procedures.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.SqlDataSource">
|
|
|
|
<summary>
|
|
<para>A component to connect a Windows Forms control to a database (in read-only mode) and configure the data connection options.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the SqlDataSource class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.#ctor(DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase)">
|
|
<summary>
|
|
<para>Initializes a new instance of the SqlDataSource class with the specified connection parameters.
|
|
</para>
|
|
</summary>
|
|
<param name="connectionParameters">
|
|
A <see cref="T:DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase"/> descendant, specifying the data connection parameters.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.#ctor(System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the SqlDataSource class with the specified connection name.
|
|
</para>
|
|
</summary>
|
|
<param name="connectionName">
|
|
A <see cref="T:System.String"/> value, specifying the connection name.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.#ctor(System.String,DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase)">
|
|
<summary>
|
|
<para>Initializes a new instance of the SqlDataSource class with the specified connection name and parameters.
|
|
</para>
|
|
</summary>
|
|
<param name="connectionName">
|
|
A <see cref="T:System.String"/> value, specifying the connection name.
|
|
|
|
</param>
|
|
<param name="connectionParameters">
|
|
A <see cref="T:DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase"/> descendant, corresponding to the appropriate data provider.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.#ctor(System.ComponentModel.IContainer)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="container">
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlDataSource.Base64">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="E:DevExpress.DataAccess.Sql.SqlDataSource.ConfigureDataConnection">
|
|
<summary>
|
|
<para>Allows you to customize connection settings before connecting to a database.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlDataSource.Connection">
|
|
<summary>
|
|
<para>Provides access to the data connection settings of the SqlDataSource.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.Sql.SqlDataConnection"/> object.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="E:DevExpress.DataAccess.Sql.SqlDataSource.ConnectionError">
|
|
<summary>
|
|
<para>Fires after an attempt to establish a data connection has failed.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlDataSource.ConnectionName">
|
|
<summary>
|
|
<para>Specifies the name of a data connection.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the data connection name.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlDataSource.ConnectionParameters">
|
|
<summary>
|
|
<para>Specifies the data connection settings of the SqlDataSource.
|
|
|
|
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase"/> descendant, specifying the connection parameters of the SqlDataSource.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="E:DevExpress.DataAccess.Sql.SqlDataSource.CustomizeFilterExpression">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlDataSource.DBSchema">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<value> </value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.Fill">
|
|
<summary>
|
|
<para>Retrieves the data from the connected data source.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.Invalidate">
|
|
<summary>
|
|
<para>Deletes all data cached when filling the SqlDataSource.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.LoadFromXml(System.Xml.Linq.XElement)">
|
|
<summary>
|
|
<para>Loads the SQL data source schema definition from XML.
|
|
</para>
|
|
</summary>
|
|
<param name="element">
|
|
A <see cref="T:System.Xml.Linq.XElement"/> value containing an XML definition of the data source schema.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlDataSource.Queries">
|
|
<summary>
|
|
<para>Provides access to the collection of queries defined for the SqlDataSource.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.Sql.SqlQueryCollection"/> object.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.RebuildResultSchema">
|
|
<summary>
|
|
<para>Rebuilds the data source schema.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.RebuildResultSchema(System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Rebuilds the data source schema with the specified parameters.
|
|
</para>
|
|
</summary>
|
|
<param name="parameters">
|
|
A collection of objects implementing the <see cref="T:DevExpress.Data.IParameter"/> interface.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.RebuildResultSchema(System.Predicate`1)">
|
|
<summary>
|
|
<para>Rebuilds the data source schema after confirming the execution of associated queries.
|
|
</para>
|
|
</summary>
|
|
<param name="confirmExecution">
|
|
A method that defines a set of criteria to determine whether or not the specified <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> strings have been executed.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.RebuildResultSchema(System.Predicate`1,System.Collections.Generic.IEnumerable`1,System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Rebuilds the data source schema with the specified queries and parameters after confirming the execution of associated queries.
|
|
</para>
|
|
</summary>
|
|
<param name="confirmExecution">
|
|
A method that defines a set of criteria to determine whether or not the specified <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> strings have been executed.
|
|
|
|
</param>
|
|
<param name="parameters">
|
|
A collection of objects implementing the <see cref="T:DevExpress.Data.IParameter"/> interface.
|
|
|
|
</param>
|
|
<param name="queries">
|
|
A collection of <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> objects.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.RebuildResultSchema(System.Predicate`1,System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Rebuilds the data source schema with the specified parameters after confirming the execution of associated queries.
|
|
</para>
|
|
</summary>
|
|
<param name="confirmExecution">
|
|
A method that defines a set of criteria to determine whether or not the specified <see cref="T:DevExpress.DataAccess.Sql.SqlQuery"/> strings have been executed.
|
|
|
|
</param>
|
|
<param name="parameters">
|
|
A collection of objects implementing the <see cref="T:DevExpress.Data.IParameter"/> interface.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlDataSource.Relations">
|
|
<summary>
|
|
<para>Provides access to the collection of master-detail relations of the SqlDataSource.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.Sql.MasterDetailInfoCollection"/> object.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlDataSource.ResultSchemaSerializable">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataSource.SaveToXml">
|
|
<summary>
|
|
<para>Saves the XML definition of the SQL data source schema.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.Xml.Linq.XElement"/> value containing an XML definition of the data source schema.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.SqlDataConnection">
|
|
|
|
<summary>
|
|
<para>A connection to a <see cref="T:DevExpress.DataAccess.Sql.SqlDataSource"/>.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataConnection.#ctor(System.String,DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase)">
|
|
<summary>
|
|
<para>Initializes a new instance of the SqlDataConnection class with the specified connection name and parameters.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value, specifying the connection name. This value is assigner to the <see cref="P:DevExpress.DataAccess.DataConnectionBase.Name"/> property.
|
|
|
|
</param>
|
|
<param name="connectionParameters">
|
|
A <see cref="T:DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase"/> descendant. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.SqlDataConnection.ConnectionParameters"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataConnection.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the SqlDataConnection class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataConnection.BlackoutCredentials">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataConnection.Close">
|
|
<summary>
|
|
<para>Closes the connection to a SQL data source.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlDataConnection.ConnectionParameters">
|
|
<summary>
|
|
<para>Provides access to the data connection parameters of the SqlDataConnection.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase"/> descendant, specifying the data connection parameters of the appropriate data provider.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlDataConnection.ConnectionString">
|
|
<summary>
|
|
<para>Specifies the connection string of the SqlDataConnection.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the connection string.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataConnection.CreateConnectionString">
|
|
<summary>
|
|
<para>Creates a connection string out of the specified query.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.String"/> value, specifying the query.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataConnection.CreateConnectionString(System.Boolean)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="blackoutCredentials">
|
|
|
|
</param>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataConnection.CreateDataConnectionParameters">
|
|
<summary>
|
|
<para>Creates a container storing the data connection parameters.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase"/> descendant, specifying the connection parameters corresponding to the appropriate data provider.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataConnection.Dispose">
|
|
<summary>
|
|
<para>Releases all resources used by SqlDataConnection.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataConnection.GetDBSchema">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataConnection.GetDBSchema(System.String[])">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="tableList">
|
|
|
|
</param>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataConnection.GetDBSchema(System.Boolean)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="loadColumns">
|
|
|
|
</param>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlDataConnection.IsConnected">
|
|
<summary>
|
|
<para>Indicates whether or not the data connection is currently active.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b> if the data connection is active; otherwise <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.SqlDataConnection.LoadDBColumns(DevExpress.Xpo.DB.DBTable[])">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="tables">
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlDataConnection.ParametersSerializable">
|
|
<summary>
|
|
<para>For internal use. Use the <see cref="M:DevExpress.DataAccess.DataConnectionBase.CreateDataConnectionParameters"/> method instead.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.SqlDataConnection.ProviderKey">
|
|
<summary>
|
|
<para>Identifies the data store provider.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, identifying the data store provider.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Localization.DataAccessResLocalizer">
|
|
|
|
<summary>
|
|
<para>A default localizer to translate a Data Access application's resources.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Localization.DataAccessResLocalizer.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the DataAccessResLocalizer class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.Localization.DataAccessResLocalizer.DefaultResourceFile">
|
|
<summary>
|
|
<para>"<b>LocalizationRes</b>"
|
|
</para>
|
|
</summary>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.DBTableWithAlias">
|
|
|
|
<summary>
|
|
<para>A data table with the specified alias (i.e., a correlation name or range variable).
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.DBTableWithAlias.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the DBTableWithAlias class.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> specifying the name of the table. This value is assigned to the <see cref="F:DevExpress.Xpo.DB.DBTable.Name"/> field.
|
|
|
|
</param>
|
|
<param name="alias">
|
|
A <see cref="T:System.String"/> specifying the table's alias. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.DBTableWithAlias.Alias"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.DBTableWithAlias.Alias">
|
|
<summary>
|
|
<para>Gets or sets the table's alias.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> specifying the table's alias.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.IDBSchemaProvider">
|
|
|
|
<summary>
|
|
<para>Provides the capability to customize the data store schema.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.IDBSchemaProvider.GetSchema(DevExpress.DataAccess.Sql.SqlDataConnection)">
|
|
<summary>
|
|
<para>Returns the database schema for the specified connection.
|
|
</para>
|
|
</summary>
|
|
<param name="connection">
|
|
An <see cref="T:DevExpress.DataAccess.Sql.SqlDataConnection"/> object that specifies the connection to an SQL data source.
|
|
|
|
</param>
|
|
<returns>A <see cref="T:DevExpress.DataAccess.Sql.DBSchema"/> object that is the database schema.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.IDBSchemaProvider.LoadColumns(DevExpress.DataAccess.Sql.SqlDataConnection,DevExpress.Xpo.DB.DBTable[])">
|
|
<summary>
|
|
<para>Loads columns from the specified tables.
|
|
</para>
|
|
</summary>
|
|
<param name="connection">
|
|
An <see cref="T:DevExpress.DataAccess.Sql.SqlDataConnection"/> object that specifies a connection to a data store.
|
|
|
|
</param>
|
|
<param name="tables">
|
|
An array of <see cref="T:DevExpress.Xpo.DB.DBTable"/> objects specifying tables.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfoCollection">
|
|
|
|
<summary>
|
|
<para>A collection of stored procedures provided by an <see cref="T:DevExpress.DataAccess.EntityFramework.EFDataSource"/>.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfoCollection.Add(DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo)">
|
|
<summary>
|
|
<para>Adds a stored procedure to the current EFStoredProcedureInfoCollection.
|
|
</para>
|
|
</summary>
|
|
<param name="storedProcedure">
|
|
A <see cref="T:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo"/> specifying a stored procedure to add to the collection.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfoCollection.AddRange(DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo[])">
|
|
<summary>
|
|
<para>Adds an array of <see cref="T:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo"/> objects to the collection.
|
|
</para>
|
|
</summary>
|
|
<param name="storedProcedureInfos">
|
|
An array of <see cref="T:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo"/> objects to append to the collection.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfoCollection.AddRange(System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Adds a collection of <see cref="T:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo"/> objects to the current collection.
|
|
</para>
|
|
</summary>
|
|
<param name="storedProcedureInfos">
|
|
A collection of <see cref="T:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo"/> objects to append to the current collection.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo">
|
|
|
|
<summary>
|
|
<para>Contains information about a stored procedure provided by an <see cref="T:DevExpress.DataAccess.EntityFramework.EFDataSource"/>.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFStoredProcedureInfo class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo.#ctor(System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFStoredProcedureInfo class with the specified name.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value specifying the stored procedure name.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo.#ctor(System.String,System.Collections.Generic.IEnumerable`1)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFStoredProcedureInfo class with specified settings.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> value specifying the stored procedure name.
|
|
|
|
</param>
|
|
<param name="parameters">
|
|
A collection of stored procedure parameters.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo.#ctor(DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFStoredProcedureInfo class with the specified prototype.
|
|
</para>
|
|
</summary>
|
|
<param name="other">
|
|
A <see cref="T:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo"/> specifying a prototype for a new <b>EFStoredProcedureInfo</b> instance.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo.Name">
|
|
<summary>
|
|
<para>Specifies the name of the stored procedure.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value specifying the stored procedure name.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.EntityFramework.EFStoredProcedureInfo.Parameters">
|
|
<summary>
|
|
<para>Specifies the stored procedure parameters.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.EntityFramework.EFParameterCollection"/> object specifying a collection of stored procedure parameters.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.ConnectionErrorEventHandler">
|
|
|
|
<summary>
|
|
<para>A method that will handle the <b>ConnectionError</b> event.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.ConnectionErrorEventHandler.Invoke(System.Object,DevExpress.DataAccess.Sql.ConnectionErrorEventArgs)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="sender">
|
|
|
|
</param>
|
|
<param name="e">
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.ConnectionErrorEventArgs">
|
|
|
|
<summary>
|
|
<para>Provides data for the <b>ConnectionError</b> event.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.ConnectionErrorEventArgs.#ctor(System.String,DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase,System.Exception)">
|
|
<summary>
|
|
<para>Initializes a new instance of the ConnectionErrorEventArgs class.
|
|
</para>
|
|
</summary>
|
|
<param name="connectionName">
|
|
A <see cref="T:System.String"/> that specifies the name of the connection for which the event has been raised. This value is assigned to the <see cref="P:DevExpress.DataAccess.Sql.ConfigureDataConnectionEventArgs.ConnectionName"/> property.
|
|
|
|
</param>
|
|
<param name="connectionParameters">
|
|
A <see cref="T:DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase"/> descendant that contains connection parameters. This object is assigned to the <see cref="P:DevExpress.DataAccess.Sql.ConfigureDataConnectionEventArgs.ConnectionParameters"/> property.
|
|
|
|
</param>
|
|
<param name="exception">
|
|
A <see cref="T:System.Exception"/> object representing the exception that caused the event.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.ConnectionErrorEventArgs.Cancel">
|
|
<summary>
|
|
<para>Gets or sets whether the operation performed on the processed event should be canceled.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b>, to cancel the operation performed on the event; otherwise, <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.ConnectionErrorEventArgs.Exception">
|
|
<summary>
|
|
<para>Gets an exception that caused the <b>ConnectionError</b> event.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.Exception"/> object representing the exception that caused the <b>ConnectionError</b> event.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.ConnectionErrorEventArgs.Handled">
|
|
<summary>
|
|
<para>Gets or sets whether default actions are required to connect to a data store.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b>, if no default actions are required to connect to a data store; otherwise, <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Localization.DataAccessLocalizer">
|
|
|
|
<summary>
|
|
<para>Provides the means to localize the Query Builder and Report Wizard.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Localization.DataAccessLocalizer.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the DataAccessLocalizer class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Localization.DataAccessLocalizer.Active">
|
|
<summary>
|
|
<para>Specifies a localizer object providing localization of an application's Query Builder and Report Wizard at runtime.
|
|
</para>
|
|
</summary>
|
|
<value>An <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> descendant, used to localize the user interface at runtime.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Localization.DataAccessLocalizer.CreateDefaultLocalizer">
|
|
<summary>
|
|
<para>Returns a Localizer object storing resources based on the thread's language and regional settings (culture).
|
|
</para>
|
|
</summary>
|
|
<returns>An <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> object, storing resources based on the thread's language and regional settings (culture).
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Localization.DataAccessLocalizer.CreateResXLocalizer">
|
|
<summary>
|
|
<para>For internal use. Returns a Localizer object storing resources based on the thread's language and regional settings (culture).
|
|
</para>
|
|
</summary>
|
|
<returns>An <see cref="T:DevExpress.Utils.Localization.XtraLocalizer`1"/> object, storing resources based on the thread's language and regional settings (culture).
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Localization.DataAccessLocalizer.GetString(DevExpress.DataAccess.Localization.DataAccessStringId)">
|
|
<summary>
|
|
<para>Returns a localized string for the given string identifier.
|
|
</para>
|
|
</summary>
|
|
<param name="id">
|
|
A <see cref="T:DevExpress.DataAccess.Localization.DataAccessStringId"/> enumeration value, identifying the string to localize.
|
|
|
|
</param>
|
|
<returns>A <see cref="T:System.String"/> value, corresponding to the specified identifier.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.CustomFilterExpressionEventHandler">
|
|
|
|
<summary>
|
|
<para>References a method that will handle the <see cref="E:DevExpress.DashboardWin.DashboardDesigner.CustomFilterExpression"/> or <see cref="E:DevExpress.DashboardWin.DashboardViewer.CustomFilterExpression"/> event.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.CustomFilterExpressionEventHandler.Invoke(System.Object,DevExpress.DataAccess.CustomFilterExpressionEventArgs)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="sender">
|
|
|
|
</param>
|
|
<param name="e">
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.CustomFilterExpressionEventArgs">
|
|
|
|
<summary>
|
|
<para>Provides data for the <b>CustomFilterExpression</b> events.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.CustomFilterExpressionEventArgs.#ctor(System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the CustomFilterExpressionEventArgs class.
|
|
</para>
|
|
</summary>
|
|
<param name="dataSourceComponentName">
|
|
A <see cref="T:System.String"/> that specifies the name of the data source. This value is assigned to the <see cref="P:DevExpress.DataAccess.CustomFilterExpressionEventArgs.DataSourceComponentName"/> property.
|
|
|
|
</param>
|
|
<param name="dataSourceName">
|
|
A <see cref="T:System.String"/> that specifies the display caption of the data source. This value is assigned to the <see cref="P:DevExpress.DataAccess.CustomFilterExpressionEventArgs.DataSourceName"/> property.
|
|
|
|
</param>
|
|
<param name="tableName">
|
|
A <see cref="T:System.String"/> value, specifying the table name. This value is assigned to the <see cref="P:DevExpress.DataAccess.CustomFilterExpressionEventArgs.TableName"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.CustomFilterExpressionEventArgs.DataSourceComponentName">
|
|
<summary>
|
|
<para>Get the data source name, used in code to identify the data source's object, for which the event has been raised.
|
|
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that is the name of the data source for which the event has been raised.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.CustomFilterExpressionEventArgs.DataSourceName">
|
|
<summary>
|
|
<para>Gets the name of the data source for which the event has been raised.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that is the name of the data source for which the event has been raised.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.CustomFilterExpressionEventArgs.FilterExpression">
|
|
<summary>
|
|
<para>Gets or sets the filter expression that defines a WHERE clause included in the SQL query.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.Data.Filtering.CriteriaOperator"/> descendant that specifies the filter expression that defines a WHERE clause included in the SQL query.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.CustomFilterExpressionEventArgs.TableName">
|
|
<summary>
|
|
<para>Indicates the name of a data table to which the <see cref="P:DevExpress.DataAccess.CustomFilterExpressionEventArgs.FilterExpression"/> applies.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value, specifying the table name.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.ConfigureDataConnectionEventHandler">
|
|
|
|
<summary>
|
|
<para>References a method that will handle the <b>ConfigureDataConnection</b> event.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.ConfigureDataConnectionEventHandler.Invoke(System.Object,DevExpress.DataAccess.Sql.ConfigureDataConnectionEventArgs)">
|
|
<summary>
|
|
<para>References a method that will handle the <b>ConfigureDataConnection</b> events.
|
|
</para>
|
|
</summary>
|
|
<param name="sender">
|
|
The event source.
|
|
|
|
</param>
|
|
<param name="e">
|
|
A <see cref="T:DevExpress.DataAccess.Sql.ConfigureDataConnectionEventArgs"/> object that contains event data.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Sql.ConfigureDataConnectionEventArgs">
|
|
|
|
<summary>
|
|
<para>Provides data for the <b>ConfigureDataConnection</b> events.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Sql.ConfigureDataConnectionEventArgs.#ctor(System.String,DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase)">
|
|
<summary>
|
|
<para>Initializes a new instance of the ConfigureDataConnectionEventArgs class.
|
|
</para>
|
|
</summary>
|
|
<param name="connectionName">
|
|
A <see cref="T:System.String"/> that specifies the name of the connection for which the event has been raised.
|
|
|
|
</param>
|
|
<param name="connectionParameters">
|
|
A <see cref="T:DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase"/> descendant that contains connection parameters.property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.ConfigureDataConnectionEventArgs.ConnectionName">
|
|
<summary>
|
|
<para>Gets the name of the connection for which the event has been raised.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the name of the connection for which the event has been raised.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Sql.ConfigureDataConnectionEventArgs.ConnectionParameters">
|
|
<summary>
|
|
<para>Gets or sets parameters used to establish a connection to data.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase"/> descendant that contains parameters used to establish a connection to data.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.EntityFramework.EFParameter">
|
|
|
|
<summary>
|
|
<para>A parameter passed to a stored procedure by an <see cref="T:DevExpress.DataAccess.EntityFramework.EFDataSource"/>.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFParameter.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFParameter class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.EntityFramework.EFParameter.#ctor(System.String,System.Type,System.Object)">
|
|
<summary>
|
|
<para>Initializes a new instance of the EFParameter class with the specified default settings.
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/>, specifying the name of the parameter.
|
|
|
|
</param>
|
|
<param name="type">
|
|
A <see cref="T:System.Type"/> value, specifying the type of the parameter.
|
|
|
|
</param>
|
|
<param name="value">
|
|
A <see cref="T:System.Object"/>, specifying the parameter value.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.VistaDBConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to a VistaDB database file.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.VistaDBConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the VistaDBConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.VistaDBConnectionParameters.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the VistaDBConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="fileName">
|
|
A <see cref="T:System.String"/> that specifies the path to the VistaDB database file. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.FileName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used for authentication. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.XmlFileConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to an XML file.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.XmlFileConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the XmlFileConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.XmlFileConnectionParameters.#ctor(System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the XmlFileConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="fileName">
|
|
A <see cref="T:System.String"/> that specifies the path to the XML file. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.XmlFileConnectionParameters.FileName"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.XmlFileConnectionParameters.FileName">
|
|
<summary>
|
|
<para>Gets or sets the path to an XML file.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the path to an XML file.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase">
|
|
|
|
<summary>
|
|
<para>Serves as the base for classes that contain parameters used to connect to SQL servers.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.DatabaseName">
|
|
<summary>
|
|
<para>Gets or sets the name of the database that contains the required data.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the name of the database that contains the required data.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.Password">
|
|
<summary>
|
|
<para>Gets or sets the password used to authenticate to a SQL server.
|
|
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the password used to authenticate to a SQL server.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.ServerName">
|
|
<summary>
|
|
<para>Gets or sets the name of the SQL server to which the connection should be established.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the name of the SQL server to which the connection should be established.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.UserName">
|
|
<summary>
|
|
<para>Gets or sets the user name used to authenticate to the SQL server.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the user name used to authenticate to the SQL server.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.PostgreSqlConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to a PostgreSQL database server.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.PostgreSqlConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the PostgreSqlConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.PostgreSqlConnectionParameters.#ctor(System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the PostgreSqlConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="serverName">
|
|
A <see cref="T:System.String"/> that specifies the name of the PostgreSQL server to which the connection should be established. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.ServerName"/> property.
|
|
|
|
</param>
|
|
<param name="databaseName">
|
|
A <see cref="T:System.String"/> that specifies the name of the database that contains the required data. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.DatabaseName"/> property.
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used to authenticate to the PostgreSQL server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.UserName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used to authenticate to the PostgreSQL server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.PostgreSqlConnectionParameters.#ctor(System.String,System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the PostgreSqlConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="serverName">
|
|
A <see cref="T:System.String"/> that specifies the name of the PostgreSQL server to which the connection should be established. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.ServerName"/> property.
|
|
|
|
</param>
|
|
<param name="port">
|
|
A <see cref="T:System.String"/> that specifies the number of the port used to listen for connections from client applications. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.PostgreSqlConnectionParameters.Port"/> property.
|
|
|
|
</param>
|
|
<param name="databaseName">
|
|
A <see cref="T:System.String"/> that specifies the name of the database that contains the required data. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.DatabaseName"/> property.
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used to authenticate to the PostgreSQL server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.UserName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used to authenticate to the PostgreSQL server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.PostgreSqlConnectionParameters.Port">
|
|
<summary>
|
|
<para>Specifies the number of the port used to listen for connections from client applications.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the number of the port.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.SQLiteConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to a SQLite database file.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.SQLiteConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the SQLiteConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.SQLiteConnectionParameters.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the SQLiteConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="fileName">
|
|
A <see cref="T:System.String"/> that specifies the path to the SQLite database file. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.FileName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used for authentication. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.PervasiveSqlConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to a Pervasive PSQL database server.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.PervasiveSqlConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the PervasiveSqlConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.PervasiveSqlConnectionParameters.#ctor(System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the PervasiveSqlConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="serverName">
|
|
A <see cref="T:System.String"/> that specifies the name of the Pervasive PSQL server to which the connection should be established. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.ServerName"/> property.
|
|
|
|
</param>
|
|
<param name="databaseName">
|
|
A <see cref="T:System.String"/> that specifies the name of the database that contains the required data. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.DatabaseName"/> property.
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used to authenticate to the Pervasive PSQL server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.UserName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used to authenticate to the Pervasive PSQL server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.OracleConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to an Oracle server.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.OracleConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the OracleConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.OracleConnectionParameters.#ctor(System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the OracleConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="serverName">
|
|
A <see cref="T:System.String"/> that specifies the name of the Oracle server to which the connection should be established. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.OracleConnectionParameters.ServerName"/> property.
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used to authenticate to the Oracle server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.OracleConnectionParameters.UserName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used to authenticate to the Oracle server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.OracleConnectionParameters.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.OracleConnectionParameters.Password">
|
|
<summary>
|
|
<para>Gets or sets the password used to authenticate to an Oracle server.
|
|
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the password used to authenticate to an Oracle server.
|
|
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.OracleConnectionParameters.ServerName">
|
|
<summary>
|
|
<para>Gets or sets the name of the Oracle server to which the connection should be established.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the name of the Oracle server to which the connection should be established.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.OracleConnectionParameters.UserName">
|
|
<summary>
|
|
<para>Gets or sets the user name used to authenticate to the Oracle server.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the user name used to authenticate to the Oracle server.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.OlapConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to a cube in an MS Analysis Services database.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.OlapConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the OlapConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.OlapConnectionParameters.#ctor(System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the OlapConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="connectionString">
|
|
A <see cref="T:System.String"/> that represents a connection string to a cube in an MS Analysis Services database.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.MySqlConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to a MySQL server.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.MySqlConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the MySqlConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.MySqlConnectionParameters.#ctor(System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the MySqlConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="serverName">
|
|
A <see cref="T:System.String"/> that specifies the name of the MySQL server to which the connection should be established. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.ServerName"/> property.
|
|
|
|
</param>
|
|
<param name="databaseName">
|
|
A <see cref="T:System.String"/> that specifies the name of the database that contains the required data. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.DatabaseName"/> property.
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used to authenticate to the MySQL server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.UserName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used to authenticate to the MySQL server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.MySqlConnectionParameters.#ctor(System.String,System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the MySqlConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="serverName">
|
|
A <see cref="T:System.String"/> value that specifies the name of the MySQL server to which the connection should be established.
|
|
|
|
</param>
|
|
<param name="databaseName">
|
|
A <see cref="T:System.String"/> value that specifies the database name.
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used for authentication.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used for authentication.
|
|
|
|
</param>
|
|
<param name="port">
|
|
A <see cref="T:System.String"/> value that specifies the port used to establish a connection to server.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.ConnectionParameters.MySqlConnectionParameters.DefaultPort">
|
|
<summary>
|
|
<para>A default port used to establish a connection to a MySQL database server.
|
|
</para>
|
|
</summary>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.MySqlConnectionParameters.Port">
|
|
<summary>
|
|
<para>Gets or sets a port used to establish a connection to a MySQL database server.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> value that specifies the port used to establish a connection to a MySQL database server.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to a Microsoft SQL Server.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the MsSqlConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters.#ctor(System.String,System.String,System.String,System.String,DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType)">
|
|
<summary>
|
|
<para>Initializes a new instance of the MsSqlConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="serverName">
|
|
A <see cref="T:System.String"/> that specifies the name of the Microsoft SQL Server to which the connection should be established. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.ServerName"/> property.
|
|
|
|
</param>
|
|
<param name="databaseName">
|
|
A <see cref="T:System.String"/> that specifies the name of the database that contains the required data. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.DatabaseName"/> property.
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used to authenticate to the Microsoft SQL Server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.UserName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used to authenticate to the Microsoft SQL Server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.Password"/> property.
|
|
|
|
</param>
|
|
<param name="authorizationType">
|
|
A <see cref="T:DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType"/> value that specifies the authentication mode of the Microsoft SQL Server.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.MsSqlConnectionParameters.AuthorizationType">
|
|
<summary>
|
|
<para>Gets or sets the authentication mode of the Microsoft SQL Server.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType"/> value that specifies the authentication mode of the Microsoft SQL Server.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.MsSqlCEConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to a Microsoft SQL Server Compact Edition database file.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.MsSqlCEConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the MsSqlCEConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.MsSqlCEConnectionParameters.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the MsSqlCEConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="fileName">
|
|
A <see cref="T:System.String"/> that specifies the path to the Microsoft SQL Server Compact Edition database file. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.FileName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used for authentication. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to a Firebird database server or embedded database.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the FireBirdConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.#ctor(System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the FireBirdConnectionParameters class with the specified parameters required to connect to a Firebird database server.
|
|
</para>
|
|
</summary>
|
|
<param name="serverName">
|
|
A <see cref="T:System.String"/> that specifies the name of the Firebird server to which the connection should be established. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.ServerName"/> property.
|
|
|
|
</param>
|
|
<param name="databaseName">
|
|
A <see cref="T:System.String"/> that specifies the name of the database that contains the required data. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.DatabaseName"/> property.
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used to authenticate to the Firebird server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.UserName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used to authenticate to the Firebird server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.#ctor(System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the FireBirdConnectionParameters class with the specified parameters required to connect to an embedded Firebird database.
|
|
</para>
|
|
</summary>
|
|
<param name="fileName">
|
|
A <see cref="T:System.String"/> that specifies the path to the Firebird database file. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.FileName"/> property.
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used for authentication. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.UserName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used for authentication. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.ConnectionType">
|
|
<summary>
|
|
<para>Gets or sets whether to connect to a database server or an embedded database.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionType"/> enumeration member that specifies whether to connect to a database server or an embedded database.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.DatabaseName">
|
|
<summary>
|
|
<para>Gets or sets the name of the database that contains the required data.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the name of the database that contains the required data.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.FileName">
|
|
<summary>
|
|
<para>Gets or sets the path to a database file.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the path to a database file.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.Password">
|
|
<summary>
|
|
<para>Gets or sets the password used for authentication.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the password used for authentication.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.ServerName">
|
|
<summary>
|
|
<para>Gets or sets the name of the Firebird server to which the connection should be established.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the name of the Firebird server to which the connection should be established.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionParameters.UserName">
|
|
<summary>
|
|
<para>Gets or sets the user name used for authentication.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the user name used for authentication.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase">
|
|
|
|
<summary>
|
|
<para>Serves as the base for classes that contain the parameters used to connect to database files.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.FileName">
|
|
<summary>
|
|
<para>Gets or sets the path to a database file.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the path to a database file.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.Password">
|
|
<summary>
|
|
<para>Gets or sets the password used to access the database file.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the password used to access the database file.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.DB2ConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to a DB2 database server.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.DB2ConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the DB2ConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.DB2ConnectionParameters.#ctor(System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the DB2ConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="serverName">
|
|
A <see cref="T:System.String"/> that specifies the name of the DB2 server to which the connection should be established. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.ServerName"/> property.
|
|
|
|
</param>
|
|
<param name="databaseName">
|
|
A <see cref="T:System.String"/> that specifies the name of the database that contains the required data. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.DatabaseName"/> property.
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used to authenticate to the DB2 server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.UserName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used to authenticate to the DB2 server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase">
|
|
|
|
<summary>
|
|
<para>Serves as the base for classes that contain the parameters of data connections.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.CustomStringConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains a connection string.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.CustomStringConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the CustomStringConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.CustomStringConnectionParameters.#ctor(System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the CustomStringConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="connectionString">
|
|
A <see cref="T:System.String"/> that contains connection parameters. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.CustomStringConnectionParameters.ConnectionString"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.CustomStringConnectionParameters.ConnectionString">
|
|
<summary>
|
|
<para>Gets or sets a connection string.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that contains connection parameters.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType">
|
|
|
|
<summary>
|
|
<para>Lists values that specify the authentication mode of the Microsoft SQL Server.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType.SqlServer">
|
|
<summary>
|
|
<para>Authenticate with a SQL server account.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.ConnectionParameters.MsSqlAuthorizationType.Windows">
|
|
<summary>
|
|
<para>Authenticate with a Windows user account.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionType">
|
|
|
|
<summary>
|
|
<para>Lists values that specify the type of the connection destination.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionType.Embedded">
|
|
<summary>
|
|
<para>The connection is established to an embedded Firebird database.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="F:DevExpress.DataAccess.ConnectionParameters.FireBirdConnectionType.ServerBased">
|
|
<summary>
|
|
<para>A connection is established to a Firebird database server.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.AseConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to an ASE database server.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.AseConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the AseConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.AseConnectionParameters.#ctor(System.String,System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the AseConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="serverName">
|
|
A <see cref="T:System.String"/> that specifies the name of the ASE server to which the connection should be established. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.ServerName"/> property.
|
|
|
|
|
|
</param>
|
|
<param name="databaseName">
|
|
A <see cref="T:System.String"/> that specifies the name of the database that contains the required data. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.DatabaseName"/> property.
|
|
|
|
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used to authenticate to the ASE server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.UserName"/> property.
|
|
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used to authenticate to the ASE server. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.SqlServerConnectionParametersBase.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.AdvantageConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to an Advantage database file.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.AdvantageConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the AdvantageConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.AdvantageConnectionParameters.#ctor(System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the AdvantageConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="fileName">
|
|
A <see cref="T:System.String"/> that specifies the path to the Advantage database file. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.FileName"/> property.
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used for authentication. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.AdvantageConnectionParameters.UserName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used for authentication. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.AdvantageConnectionParameters.UserName">
|
|
<summary>
|
|
<para>Gets or sets the user name used to authenticate to the database.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the user name used to authenticate to the database.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.Access97ConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to an Access 97 database file.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.Access97ConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the Access97ConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.Access97ConnectionParameters.#ctor(System.String,System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the Access97ConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="fileName">
|
|
A <see cref="T:System.String"/> that specifies the path to the Access 97 database file. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.FileName"/> property.
|
|
|
|
</param>
|
|
<param name="userName">
|
|
A <see cref="T:System.String"/> that specifies the user name used for authentication. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.Access97ConnectionParameters.UserName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used for authentication. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.ConnectionParameters.Access97ConnectionParameters.UserName">
|
|
<summary>
|
|
<para>Gets or sets the user name used to authenticate to the database.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the user name used to authenticate to the database.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ConnectionParameters.Access2007ConnectionParameters">
|
|
|
|
<summary>
|
|
<para>Contains parameters used to establish a connection to an Access 2007 database file.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.Access2007ConnectionParameters.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the Access2007ConnectionParameters class with default settings.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ConnectionParameters.Access2007ConnectionParameters.#ctor(System.String,System.String)">
|
|
<summary>
|
|
<para>Initializes a new instance of the Access2007ConnectionParameters class.
|
|
</para>
|
|
</summary>
|
|
<param name="fileName">
|
|
A <see cref="T:System.String"/> that specifies the path to the Access 2007 database file. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.FileName"/> property.
|
|
|
|
</param>
|
|
<param name="password">
|
|
A <see cref="T:System.String"/> that specifies the password used for authentication. This value is assigned to the <see cref="P:DevExpress.DataAccess.ConnectionParameters.FileConnectionParametersBase.Password"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.ObjectBinding.Parameter">
|
|
|
|
<summary>
|
|
<para>Provides basic functionality for parameters.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.Parameter.#ctor">
|
|
<summary>
|
|
<para>Initializes a new instance of the Parameter class with default settings.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.Parameter.#ctor(System.String,System.Type,System.Object)">
|
|
<summary>
|
|
<para>Initializes a new instance of the Parameter class.
|
|
|
|
</para>
|
|
</summary>
|
|
<param name="name">
|
|
A <see cref="T:System.String"/> that specifies a parameter name. This value is assigned to the <see cref="P:DevExpress.DataAccess.Parameter.Name"/> property.
|
|
|
|
</param>
|
|
<param name="type">
|
|
A <see cref="T:System.Type"/> that specifies a parameter type. This value is assigned to the <see cref="P:DevExpress.DataAccess.Parameter.Type"/> property.
|
|
|
|
</param>
|
|
<param name="value">
|
|
A parameter value. This value is assigned to the <see cref="P:DevExpress.DataAccess.Parameter.Value"/> property.
|
|
|
|
</param>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.ObjectBinding.Parameter.ToString">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.Wizard.Model.IDataConnection">
|
|
|
|
<summary>
|
|
<para>When implemented by a class, enables it to connect to a data source.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Wizard.Model.IDataConnection.BlackoutCredentials">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Wizard.Model.IDataConnection.CreateConnectionString">
|
|
<summary>
|
|
<para>Creates a connection string based on the specified value.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.String"/> value.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.Wizard.Model.IDataConnection.CreateConnectionString(System.Boolean)">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="blackoutCredentials">
|
|
|
|
</param>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Wizard.Model.IDataConnection.Name">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<value> </value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.Wizard.Model.IDataConnection.StoreConnectionNameOnly">
|
|
<summary>
|
|
<para>Specifies whether to store any connection settings except for the data connection name.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b> to store only the name of a data connection; otherwise <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.DataConnectionBase">
|
|
|
|
<summary>
|
|
<para>Serves as the base class for classes that represent a data connection.
|
|
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.DataConnectionBase.Close">
|
|
<summary>
|
|
<para>Closes the data connection session.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.DataConnectionBase.ConnectionString">
|
|
<summary>
|
|
<para>Gets or sets a connection string used to establish a connection to a data store.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies a connection string used to establish a connection to a data store.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.DataConnectionBase.ConnectionStringSerializable">
|
|
<summary>
|
|
<para>For internal use.
|
|
</para>
|
|
</summary>
|
|
<value>
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.DataConnectionBase.CreateConnectionString">
|
|
<summary>
|
|
<para>Creates a connection string.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:System.String"/> that specifies a connection string used to establish a connection to a data store.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.DataConnectionBase.CreateDataConnectionParameters">
|
|
<summary>
|
|
<para>Creates the data connection parameters.
|
|
</para>
|
|
</summary>
|
|
<returns>A <see cref="T:DevExpress.DataAccess.ConnectionParameters.DataConnectionParametersBase"/> descendant, containing the data connection parameters.
|
|
</returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.DataConnectionBase.GetDBSchema">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.DataConnectionBase.GetDBSchema(System.String[])">
|
|
<summary>
|
|
<para> </para>
|
|
</summary>
|
|
<param name="tableList">
|
|
|
|
</param>
|
|
<returns> </returns>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.DataConnectionBase.HasConnectionString">
|
|
<summary>
|
|
<para>Specifies whether the connection string has been assigned to the data connection.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b> if the connection string has already been specified; otherwise <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.DataConnectionBase.IsConnected">
|
|
<summary>
|
|
<para>Specifies whether the connection to a database is currently active.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b> if the data connection is currently active; otherwise <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.DataConnectionBase.Name">
|
|
<summary>
|
|
<para>Gets or sets the name of a data connection.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the name of a data connection.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="M:DevExpress.DataAccess.DataConnectionBase.Open">
|
|
<summary>
|
|
<para>Opens the data connection session.
|
|
</para>
|
|
</summary>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.DataConnectionBase.StoreConnectionNameOnly">
|
|
<summary>
|
|
<para>Specifies whether to store any connection settings except for the data connection name.
|
|
</para>
|
|
</summary>
|
|
<value><b>true</b> to store only the name of a data connection; otherwise <b>false</b>.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="T:DevExpress.DataAccess.DataProviderBase">
|
|
|
|
<summary>
|
|
<para>Serves as the base class for classes that represent a data provider.
|
|
</para>
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.DataProviderBase.DataConnection">
|
|
<summary>
|
|
<para>Returns the SQL data connection settings.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:DevExpress.DataAccess.Sql.SqlDataConnection"/> object.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
<member name="P:DevExpress.DataAccess.DataProviderBase.SqlQuery">
|
|
<summary>
|
|
<para>Gets or sets the SQL query used to select data from the data store.
|
|
</para>
|
|
</summary>
|
|
<value>A <see cref="T:System.String"/> that specifies the SQL query used to select data from the data store.
|
|
</value>
|
|
|
|
|
|
</member>
|
|
</members>
|
|
</doc>
|