Dapper を ORM として使用し、Dapper.Contrib 拡張機能によって挿入、更新スクリプトを生成しています。Rowlock を含む Update スクリプトを生成したい。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);
.......