You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The name of every method is described with the comment on top of the sql statement
This sql statement will generate the following method:
The generated method will have the async keyword, but the method name is missing "Async" at the end.
It is possible to name the method Async in the sql file.
This does Generate an async method with "Async" in the name.
However, the according structs will also have "Async" in the name.
This poses a conflict on the standard C# naming convention.
My proposed solution would be to have an option in the yaml file the likes of "addAsyncInMethodName" with the default Value being true.
That way the following sql statement
will generate the following structs and methods: