/// <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)); }
/// <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)); }
/// <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)); }
/// <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)); }
/// <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)); }