Exemplo n.º 1
0
 /// <summary>
 ///     Throws <see cref="NotSupportedException" /> since this operation requires table rebuilds, which
 ///     are not yet supported.
 /// </summary>
 /// <param name="operation"> The operation. </param>
 /// <param name="model"> The target model which may be <c>null</c> if the operations exist without a model. </param>
 /// <param name="builder"> The command builder to use to build the commands. </param>
 protected override void Generate(DropForeignKeyOperation operation, IModel model, MigrationCommandListBuilder builder)
 => throw new NotSupportedException(
           TaosStrings.InvalidMigrationOperation(operation.GetType().ShortDisplayName()));
 protected override void Generate(DropForeignKeyOperation operation, IModel model, MigrationCommandListBuilder builder)
 {
     throw new NotSupportedException(SqliteStrings.InvalidMigrationOperation(operation.GetType().Name));
 }