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
id
I ran the following :
dotnet saturn gen Movie Movies Id:int Title:string ReleaseDate:DateTime Genre:string Price:decimal Rating:string
When building, there were many errors like the following:
error FS0039: The type 'Movie' does not define the field, constructor or member 'id'.
The generated code which led to the errors:
It looks like Saturn.Cli assumes the existence of a field id. Note that in the above case, the field is Id.
Id
Seems like there are a few ways to resolve this. Saturn.Cli could do one of the following (among other possible suggestions):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I ran the following :
When building, there were many errors like the following:
The generated code which led to the errors:
It looks like Saturn.Cli assumes the existence of a field
id
. Note that in the above case, the field isId
.Seems like there are a few ways to resolve this. Saturn.Cli could do one of the following (among other possible suggestions):
id
is not provided (simplest)Id
instead ofid
The text was updated successfully, but these errors were encountered: