使用迁移时如何指定产品版本?
How can i specify product version when working with migrations?
这里是 [dbo].[__EFMigrationsHistory]
table 的快速示例:
有没有办法在应用迁移时指定 ProductVersion
?
不要更改该列中的值 -- 它由 EF 在内部使用。
如果您愿意,可以通过覆盖 IHistoryRepository
服务来添加新列。请参阅 Custom EF Core Migrations History Table 开始。
这里是 [dbo].[__EFMigrationsHistory]
table 的快速示例:
有没有办法在应用迁移时指定 ProductVersion
?
不要更改该列中的值 -- 它由 EF 在内部使用。
如果您愿意,可以通过覆盖 IHistoryRepository
服务来添加新列。请参阅 Custom EF Core Migrations History Table 开始。