We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I define seed data with HasData method the generated code for migration uses this syntax:
migrationBuilder.InsertData( schema: "dbo", table: "Table", columns: new[] { "Column1", "Column2" }, values: new object[] { false, null });
If I defined enable in csproj, this code don't compile. The problem is for values parameter, must be object?[] type instead of object[] type.
The text was updated successfully, but these errors were encountered:
Duplicate of #18950
Sorry, something went wrong.
No branches or pull requests
When I define seed data with HasData method the generated code for migration uses this syntax:
If I defined enable in csproj, this code don't compile.
The problem is for values parameter, must be object?[] type instead of object[] type.
The text was updated successfully, but these errors were encountered: