Beispiel #1
0
 public SqlEventStore(string connectionString)
 {
     Database = new SqlEventStoreDatabase(connectionString);
 }
Beispiel #2
0
 public SqlEventStoreWithBulkCopyAppend(ISqlEventStore eventStore)
     : base(eventStore)
 {
     Database = eventStore.Database;
 }