CQRS.NET  2.2
A lightweight enterprise framework to write CQRS, event-sourced and micro-service applications in hybrid multi-datacentre, on-premise and Azure environments.
Cqrs.Events.SqlEventStoreDataContext Class Reference

A custom DataContext that supports specifying a table name. More...

+ Inheritance diagram for Cqrs.Events.SqlEventStoreDataContext:

Public Member Functions

 SqlEventStoreDataContext (string fileOrServerOrConnection)
 Instantiates a new instance of the SqlEventStoreDataContext class by referencing a file source. More...
 
 SqlEventStoreDataContext (System.Data.IDbConnection connection)
 Instantiates a new instance of the SqlEventStoreDataContext class by referencing a connection. More...
 

Static Public Member Functions

static SqlEventStoreDataContext New< TTable > (string tableName, string fileOrServerOrConnection)
 Instantiates a new instance of the SqlEventStoreDataContext class by referencing a file source. More...
 
static SqlEventStoreDataContext New< TTable > (string tableName, System.Data.IDbConnection connection)
 Instantiates a new instance of the SqlEventStoreDataContext class by referencing a connection. More...
 
static SqlEventStoreDataContext New (Type rowType, string tableName, string fileOrServerOrConnection)
 Instantiates a new instance of the SqlEventStoreDataContext class by referencing a file source. More...
 
static SqlEventStoreDataContext New (Type rowType, string tableName, System.Data.IDbConnection connection)
 Instantiates a new instance of the SqlEventStoreDataContext class by referencing a connection. More...
 

Detailed Description

A custom DataContext that supports specifying a table name.