?? microsoft.practices.enterpriselibrary.data.xml
字號:
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.Practices.EnterpriseLibrary.Data</name>
</assembly>
<members>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Data.CachingMechanism">
<devdoc>
CachingMechanism provides caching support for stored procedure
parameter discovery and caching
</devdoc>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.CachingMechanism.CloneParameters(System.Data.IDataParameter[])">
<devdoc>
Create and return a copy of the IDataParameter array.
</devdoc>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.CachingMechanism.Clear">
<devdoc>
Empties all items from the cache
</devdoc>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.CachingMechanism.AddParameterSetToCache(System.String,System.Data.IDbCommand,System.Data.IDataParameter[])">
<devdoc>
Add a parameter array to the cache for the command.
</devdoc>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.CachingMechanism.GetCachedParameterSet(System.String,System.Data.IDbCommand)">
<devdoc>
Gets a parameter array from the cache for the command. Returns null if no parameters are found.
</devdoc>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.CachingMechanism.IsParameterSetCached(System.String,System.Data.IDbCommand)">
<devdoc>
Gets if a given stored procedure on a specific connection string has a cached parameter set
</devdoc>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseAssemblerAttribute">
<summary>
Specifies what type to use to build the concrete <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Database"/> type this attribute is bound to.
This class cannot be inherited.
</summary>
<remarks>
This attribute is used by the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.DatabaseCustomFactory"/> once the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Database"/> type to build is
known based on the configuration information to determine how to build the actual <b>Database</b> instance.
</remarks>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseAssemblerAttribute.#ctor(System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseAssemblerAttribute"/> class with an assembler type.
</summary>
<param name="assemblerType">The assembler type. Must implement the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.IDatabaseAssembler"/> interface.</param>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseAssemblerAttribute.AssemblerType">
<summary>
Gets the database assembler type.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings">
<summary>
<para>Represents the root configuration for data.</para>
</summary>
<remarks>
<para>The class maps to the <c>databaseSettings</c> element in configuration.</para>
</remarks>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings.SectionName">
<summary>
The name of the data configuration section.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings"/> class.</para>
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings.GetDatabaseSettings(Microsoft.Practices.EnterpriseLibrary.Common.Configuration.IConfigurationSource)">
<summary>
Retrieves the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings"/> from a configuration source.
</summary>
<param name="configurationSource">The <see cref="T:Microsoft.Practices.EnterpriseLibrary.Common.Configuration.IConfigurationSource"/> to query for the database settings.</param>
<returns>The database settings from the configuration source, or <see langword="null"/> (<b>Nothing</b> in Visual Basic) if the
configuration source does not contain database settings.</returns>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings.DefaultDatabase">
<summary>
<para>Gets or sets the default database instance name.</para>
</summary>
<value>
<para>The default database instance name.</para>
</value>
<remarks>
<para>This property maps to the <c>defaultInstance</c> element in configuration.</para>
</remarks>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings.ProviderMappings">
<summary>
Holds the optional mappings from ADO.NET's database providers to Enterprise Library's database types.
</summary>
<seealso cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DbProviderMapping"/>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DbProviderMapping">
<summary>
Represents the mapping from an ADO.NET provider to an Enterprise Library <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Database"/>.
</summary>
<remarks>
<para>
The Enterprise Library Data Access Application Block leverages the ADO.NET 2.0 provider factories. To determine what type of <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Database"/> matches a given provider factory type, the optional
<see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DbProviderMapping"/> configuration objects can be defined in the block's configuration section.
</para>
<para>
If a mapping is not present for a given provider type, sensible defaults will be used:
<list type="bullet">
<item>For provider name "System.Data.SqlClient", or for a provider of type <see cref="T:System.Data.SqlClient.SqlClientFactory"/>, the
<see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Sql.SqlDatabase"/> will be used.</item>
<item>For provider name "System.Data.OracleClient", or for a provider of type <see cref="T:System.Data.OracleClient.OracleClientFactory"/>, the
<see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Oracle.OracleDatabase"/> will be used.</item>
<item>In any other case, the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.GenericDatabase"/> will be used.</item>
</list>
</para>
</remarks>
<seealso cref="M:Microsoft.Practices.EnterpriseLibrary.Data.DatabaseConfigurationView.GetProviderMapping(System.String,System.String)"/>
<seealso cref="T:System.Data.Common.DbProviderFactory"/>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DbProviderMapping.DefaultSqlProviderName">
<summary>
Default name for the Sql managed provider.
</summary>
</member>
<member name="F:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DbProviderMapping.DefaultOracleProviderName">
<summary>
Default name for the Oracle managed provider.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DbProviderMapping.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DbProviderMapping"/> class.
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DbProviderMapping.#ctor(System.String,System.Type)">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DbProviderMapping"/> class with name and <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Database"/> type.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DbProviderMapping.DatabaseType">
<summary>
Gets or sets the type of database to use for the mapped ADO.NET provider.
</summary>
</member>
<member name="P:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DbProviderMapping.DbProviderName">
<summary>
Gets the logical name of the ADO.NET provider.
</summary>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.IDatabaseAssembler">
<summary>
Represents the process to build an instance of a concrete <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Database"/> described by configuration information.
</summary>
<seealso cref="T:Microsoft.Practices.EnterpriseLibrary.Data.DatabaseCustomFactory"/>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.Configuration.IDatabaseAssembler.Assemble(System.String,System.Configuration.ConnectionStringSettings,Microsoft.Practices.EnterpriseLibrary.Common.Configuration.IConfigurationSource)">
<summary>
Builds an instance of the concrete subtype of <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Database"/> the receiver knows how to build, based on
the provided connection string and any configuration information that might be contained by the
<paramref name="configurationSource"/>.
</summary>
<param name="name">The name for the new database instance.</param>
<param name="connectionStringSettings">The connection string for the new database instance.</param>
<param name="configurationSource">The source for any additional configuration information.</param>
<returns>The new database instance.</returns>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Data.DatabaseProviderFactory">
<summary>
<para>Represents a factory for creating named instances of <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.Database"/> objects.</para>
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.DatabaseProviderFactory.#ctor">
<summary>
<para>Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.DatabaseProviderFactory"/> class
with the default configuration source.</para>
</summary>
</member>
<member name="M:Microsoft.Practices.EnterpriseLibrary.Data.DatabaseProviderFactory.#ctor(Microsoft.Practices.EnterpriseLibrary.Common.Configuration.IConfigurationSource)">
<summary>
<para>Initializes a new instance of the <see cref="T:Microsoft.Practices.EnterpriseLibrary.Data.DatabaseProviderFactory"/> class
with the given configuration source.</para>
</summary>
<param name="configurationSource">The source for configuration information.</param>
</member>
<member name="T:Microsoft.Practices.EnterpriseLibrary.Data.Instrumentation.CommandFailedEvent">
<summary>
Represents the WMI event fired when a command failed during its execution.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -