I am using the following formula in my mapping file :
select top 1 SI.ID from Table SI with(nolock) where SI.GUID = GUID And SI.IsArchive = '0'
the genrated sql is : select top 1 SI.ID from Table SI with(this_.nolock) where SI.GUID = this_.GUID And SI.IsArchive = '0'
The nolock is a keyword. I don't want it to be qualified with this_.(template keyword).
how can I change this behaviour ?