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
I have a table with a column of real[] data type in my Postgres database, and whenever I generate the entity code for it it generates broken code.
real[]
An example: Column named Splits of type real[] Generated code:
Splits
public System.Collections.Generic.List`1[[System.Single, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]? Splits { get; set; }
My proposal would be that it generates this instead
public System.Collections.Generic.List<System.Single>? Splits { get; set; }
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I have a table with a column of
real[]
data type in my Postgres database, and whenever I generate the entity code for it it generates broken code.An example:
Column named
Splits
of typereal[]
Generated code:
My proposal would be that it generates this instead
The text was updated successfully, but these errors were encountered: