Skip to content
New issue

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

Postgres' real[] breaks generated code #576

Open
Thundernerd opened this issue May 25, 2024 · 0 comments · May be fixed by #584
Open

Postgres' real[] breaks generated code #576

Thundernerd opened this issue May 25, 2024 · 0 comments · May be fixed by #584

Comments

@Thundernerd
Copy link

Thundernerd commented May 25, 2024

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 type real[]
Generated code:

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; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant