IRelationalStorage Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A common interface for all relational databases.
public interface IRelationalStorage
type IRelationalStorage = interface
Public Interface IRelationalStorage
- Derived
Properties
ConnectionString |
The connection string used to connecto the database. |
InvariantName |
The well known invariant name of the underlying database. |
Methods
ExecuteAsync(String, Action<IDbCommand>, CancellationToken, CommandBehavior) |
Executes a given statement. Especially intended to use with INSERT, UPDATE, DELETE or DDL queries. |
ReadAsync<TResult>(String, Action<IDbCommand>, Func<IDataRecord,Int32,CancellationToken,Task<TResult>>, CancellationToken, CommandBehavior) |
Executes a given statement. Especially intended to use with SELECT statement. |