I am using Dapper as ORM and generating insert,update script by Dapper.Contrib extensions. I want to generate Update script include Rowlock. Is there any usage except changing generic code below in SqlMapperExtensions.
public static bool Update<T>(this IDbConnection connection....
var proxy = entityToUpdate as IProxy;
......
......
var sb = new StringBuilder();
sb.AppendFormat("update {0} set ",name);
var allProperties = TypePropertiesCache(type);
.......