Dashing.Engine.Dialects.SqliteDialect.AppendForUpdateUsingTableHint C# (CSharp) Method

AppendForUpdateUsingTableHint() public method

public AppendForUpdateUsingTableHint ( StringBuilder tableSql ) : void
tableSql StringBuilder
return void
        public override void AppendForUpdateUsingTableHint(StringBuilder tableSql) {
            // sqlite doesn't support FOR UPDATE type locks
            throw new NotSupportedException();
        }