예제 #1
0
파일: Max.cs 프로젝트: softempire/RepoDb
 /// <summary>
 /// Maximizes the target field from the database table.
 /// </summary>
 /// <param name="field">The field to be maximumd.</param>
 /// <param name="where">The query expression to be used.</param>
 /// <param name="hints">The table hints to be used. See <see cref="SqlServerTableHints"/> class.</param>
 /// <param name="transaction">The transaction to be used.</param>
 /// <returns>The maximum value.</returns>
 public object Max(Field field,
                   QueryGroup where           = null,
                   string hints               = null,
                   IDbTransaction transaction = null)
 {
     return(DbRepository.Max <TEntity>(field: field,
                                       where : where,
                                       hints: hints,
                                       transaction: transaction));
 }
예제 #2
0
파일: Max.cs 프로젝트: softempire/RepoDb
 /// <summary>
 /// Maximizes the target field from the database table.
 /// </summary>
 /// <param name="field">The field to be maximumd.</param>
 /// <param name="where">The query expression to be used.</param>
 /// <param name="hints">The table hints to be used. See <see cref="SqlServerTableHints"/> class.</param>
 /// <param name="transaction">The transaction to be used.</param>
 /// <returns>The maximum value.</returns>
 public object Max(Field field,
                   Expression <Func <TEntity, bool> > where = null,
                   string hints = null,
                   IDbTransaction transaction = null)
 {
     return(DbRepository.Max <TEntity>(field: field,
                                       where : where,
                                       hints: hints,
                                       transaction: transaction));
 }
예제 #3
0
 /// <summary>
 /// Computes the max value of the target field.
 /// </summary>
 /// <param name="field">The field to be maximized.</param>
 /// <param name="where">The query expression to be used.</param>
 /// <param name="hints">The table hints to be used.</param>
 /// <param name="transaction">The transaction to be used.</param>
 /// <returns>The max value of the target field.</returns>
 public TResult Max <TResult>(Expression <Func <TEntity, TResult> > field,
                              QueryGroup where           = null,
                              string hints               = null,
                              IDbTransaction transaction = null)
 {
     return(DbRepository.Max <TEntity, TResult>(field: field,
                                                where : where,
                                                hints: hints,
                                                transaction: transaction));
 }
예제 #4
0
파일: Max.cs 프로젝트: softempire/RepoDb
 /// <summary>
 /// Maximizes the target field from the database table.
 /// </summary>
 /// <param name="field">The field to be maximumd.</param>
 /// <param name="where">The query expression to be used.</param>
 /// <param name="hints">The table hints to be used. See <see cref="SqlServerTableHints"/> class.</param>
 /// <param name="transaction">The transaction to be used.</param>
 /// <returns>The maximum value.</returns>
 public object Max(Expression <Func <TEntity, object> > field,
                   IEnumerable <QueryField> where = null,
                   string hints = null,
                   IDbTransaction transaction = null)
 {
     return(DbRepository.Max <TEntity>(field: field,
                                       where : where,
                                       hints: hints,
                                       transaction: transaction));
 }
예제 #5
0
 /// <summary>
 /// Computes the max value of the target field.
 /// </summary>
 /// <param name="field">The field to be maximized.</param>
 /// <param name="where">The query expression to be used.</param>
 /// <param name="hints">The table hints to be used.</param>
 /// <param name="transaction">The transaction to be used.</param>
 /// <returns>The max value of the target field.</returns>
 public TResult Max <TResult>(Field field,
                              IEnumerable <QueryField> where = null,
                              string hints = null,
                              IDbTransaction transaction = null)
 {
     return(DbRepository.Max <TEntity, TResult>(field: field,
                                                where : where,
                                                hints: hints,
                                                transaction: transaction));
 }