コード例 #1
0
ファイル: DataProvider.cs プロジェクト: thehexgod/BESSY-DB
        public void AddReplication(ReplicationCommand command)
        {
            if (!_databases.ContainsKey(command.DatabaseName))
                throw new ReplicationFactoryException(string.Format("Database not found, or not attached: {0}", command.DatabaseName));

            var database = _databases[command.DatabaseName];
        }
コード例 #2
0
ファイル: DataProvider.cs プロジェクト: thehexgod/BESSY-DB
 public void RemoveReplication(ReplicationCommand command)
 {
 }