zoukankan      html  css  js  c++  java
  • EF Core 迁移时将字段由不允许为空改变为允许为空、修改字段长度限制

    允许为空

    migrationBuilder.AlterColumn<string>(
    name: "BirthData",
    table: "Demo_Author",
    type: "datetimeoffset(7)",
    nullable: true,
    oldNullable:false);

    修改字段长度限制

    migrationBuilder.AlterColumn<string>(
    name: "Email",
    table: "Demo_Author",
    maxLength: 30,
    nullable: true,
    oldClrType: typeof(string),
    oldType: "nvarchar(max)",
    oldNullable: true);

    migrationBuilder.AlterColumn<string>(
    name: "Email",
    table: "App_User",
    maxLength: 40,
    nullable: true,
    oldClrType: typeof(string),
    oldType: "nvarchar(max)",
    oldNullable: true);

  • 相关阅读:
    第二章.md
    第四章.md
    第一章.md
    第九章.md
    png简析.md
    第五章.md
    好看的粒子效果
    缓动 减速运动
    收集的小效果
    粒子效果2
  • 原文地址:https://www.cnblogs.com/Anthony518/p/12812159.html
Copyright © 2011-2022 走看看