Example #1
0
 public static IPostgreSQLSpecificQueryable <TSource> ForNoKeyUpdateSkipLockedHint <TSource>(
     this IPostgreSQLSpecificQueryable <TSource> query,
     params Sql.SqlID[]                         tableIDs)
     where TSource : notnull
 {
     return(SubQueryTableHint(query, ForNoKeyUpdate, SkipLocked, tableIDs));
 }
Example #2
0
 public static IPostgreSQLSpecificQueryable <TSource> ForUpdateNoWaitHint <TSource>(
     this IPostgreSQLSpecificQueryable <TSource> query,
     params Sql.SqlID[]                         tableIDs)
     where TSource : notnull
 {
     return(SubQueryTableHint(query, ForUpdate, NoWait, tableIDs));
 }