I have .Net Core project with code-first approach.
Here is my migrations where I populate table with enums
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.Sql(
$"INSERT INTO ValidationStatuses(Id,Name) VALUES({(int) ValidationStatusEnum.ValidationRequired},{ValidationStatusEnum.ValidationRequired})");
migrationBuilder.Sql(
$"INSERT INTO ValidationStatuses(Id,Name) VALUES({(int) ValidationStatusEnum.Validated},{ValidationStatusEnum.Validated})");
migrationBuilder.Sql(
$"INSERT INTO TenantTypes(Id,Name) VALUES({(int) TenantTypeEnum.Agency},{TenantTypeEnum.Agency}");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.Sql(
"DELETE FROM ValidationStatuses");
migrationBuilder.Sql(
"DELETE FROM TenantTypes ");
}
When I try to run it I have this
Unknown column ‘ValidationRequired’ in ‘field list’
How I can fix this?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
You are missing the quotes to tell MySQL it’s a String value and not a cloumn.
$"INSERT INTO ValidationStatuses(Id,Name) VALUES('{(int) ValidationStatusEnum.ValidationRequired}','{ValidationStatusEnum.ValidationRequired})'");
You might need to replace the single quotes I added by double quotes in MySQL.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0