I use the following formula in the mapping file:
select top 1 SI.ID from the SI table with (nolock), where SI.GUID = GUID AND SI.IsArchive = '0'
genrated sql: select top 1 SI.ID from the SI table with (this_.nolock) , where SI.GUID = this_.GUID AND SI.IsArchive = '0'
Knock is a keyword. I do not want this to match this _ (keyword template).
How can I change this behavior?
source
share