Replies: 2 comments
-
That is weird because I thought internally the library is using the exact sql builder as exposed via |
Beta Was this translation helpful? Give feedback.
0 replies
-
@MoonStorm, When I try to generate a so complex SQL statement, and use For example compare bellow codes:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When custom column name is set to entity property, and full select statement is generated by
OrmConfiguration.GetSqlBuilder<T>().Format
to execute inConnection.Query
, the generated SQL statement is ignored the actual property name, This will cause the result of Query method wont map to properties.I can do this by adding new formatter to generate column name with alias. but I am not sure if it is the only way to do this?
Can I make a pull request?
Beta Was this translation helpful? Give feedback.
All reactions