Open AliDehghani opened 3 years ago
I'm generating statements for SQL but I want queries for string values to support Unicode values as well. How can I config QueryBuilder or override a function to add the N prefix to string values like the below query:
Category.Name LIKE('%hello%') => Category.Name LIKE(N'%hello%')
Thanks.
I'm generating statements for SQL but I want queries for string values to support Unicode values as well. How can I config QueryBuilder or override a function to add the N prefix to string values like the below query:
Category.Name LIKE('%hello%') => Category.Name LIKE(N'%hello%')
Thanks.