RelationalStorage Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A general purpose class to work with a given relational database and ADO.NET provider.
public class RelationalStorage : Orleans.SqlUtils.IRelationalStorage
type RelationalStorage = class
interface IRelationalStorage
Public Class RelationalStorage
Implements IRelationalStorage
- Inheritance
-
RelationalStorage
- Implements
Properties
ConnectionString |
The connection string used to connecto the database. |
InvariantName |
The invariant name of the connector for this database. |
Methods
CreateInstance(String, String) |
Creates an instance of a database of type IRelationalStorage. |
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. |