Beispiel #1
0
 public DelegateMigrationStrategy(int fromVersion, int toVersion, MigrationFunction migrationDelegate) : base(fromVersion, toVersion)
 {
     _migrationDelegate = migrationDelegate;
 }
		public DelegateMigrationStrategy(int fromVersion, int toVersion, MigrationFunction migrationDelegate) : base(fromVersion, toVersion)
		{
			_migrationDelegate = migrationDelegate;
		}
Beispiel #3
0
 public Task <string> MigrationQueryAsync(MigrationFunction migrationFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <MigrationFunction, string>(migrationFunction, blockParameter));
 }