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