110 lines
4.4 KiB
C#
110 lines
4.4 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Linq.Expressions;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SqlSugar
|
|||
|
{
|
|||
|
public interface IUpdateable<T> where T : class, new()
|
|||
|
{
|
|||
|
UpdateBuilder UpdateBuilder { get; set; }
|
|||
|
bool UpdateParameterIsNull { get; set; }
|
|||
|
|
|||
|
int ExecuteCommandWithOptLock(bool isThrowError = false);
|
|||
|
Task<int> ExecuteCommandWithOptLockAsync(bool isThrowError = false);
|
|||
|
int ExecuteCommand();
|
|||
|
bool ExecuteCommandHasChange();
|
|||
|
Task<int> ExecuteCommandAsync();
|
|||
|
Task<bool> ExecuteCommandHasChangeAsync();
|
|||
|
|
|||
|
|
|||
|
IUpdateable<T> AS(string tableName);
|
|||
|
IUpdateable<T> AsType(Type tableNameType);
|
|||
|
IUpdateable<T> With(string lockString);
|
|||
|
|
|||
|
|
|||
|
IUpdateable<T> Where(Expression<Func<T, bool>> expression);
|
|||
|
IUpdateable<T> Where(string whereSql,object parameters=null);
|
|||
|
/// <summary>
|
|||
|
///
|
|||
|
/// </summary>
|
|||
|
/// <param name="fieldName"></param>
|
|||
|
/// <param name="conditionalType">for example : = </param>
|
|||
|
/// <param name="fieldValue"></param>
|
|||
|
/// <returns></returns>
|
|||
|
IUpdateable<T> Where(string fieldName, string conditionalType, object fieldValue);
|
|||
|
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Non primary key entity update function,.WhereColumns(it=>new{ it.Id })
|
|||
|
/// </summary>
|
|||
|
/// <param name="columns"></param>
|
|||
|
/// <returns></returns>
|
|||
|
IUpdateable<T> WhereColumns(Expression<Func<T, object>> columns);
|
|||
|
IUpdateable<T> WhereColumns(string columnName);
|
|||
|
IUpdateable<T> WhereColumns(params string [] columnNames);
|
|||
|
IUpdateable<T> Where(List<IConditionalModel> conditionalModels);
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// .UpdateColumns(it=>new{ it.Name,it.Price})
|
|||
|
/// </summary>
|
|||
|
/// <param name="columns"></param>
|
|||
|
/// <returns></returns>
|
|||
|
IUpdateable<T> UpdateColumns(Expression<Func<T, object>> columns);
|
|||
|
IUpdateable<T> UpdateColumns(params string[] columns);
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
///.SetColumns(it=>it.Name=="a")
|
|||
|
/// </summary>
|
|||
|
/// <param name="columns"></param>
|
|||
|
/// <returns></returns>
|
|||
|
IUpdateable<T> SetColumns(Expression<Func<T, bool>> columns);
|
|||
|
/// <summary>
|
|||
|
/// .SetColumns(it=> new class() { it.Name="a",it.Price=0})
|
|||
|
/// </summary>
|
|||
|
/// <param name="columns"></param>
|
|||
|
/// <returns></returns>
|
|||
|
IUpdateable<T> SetColumns(Expression<Func<T, T>> columns);
|
|||
|
IUpdateable<T> SetColumns(Expression<Func<T, T>> columns,bool appendColumnsByDataFilter);
|
|||
|
IUpdateable<T> SetColumns(string fieldName,object fieldValue);
|
|||
|
|
|||
|
IUpdateable<T> SetColumns(Expression<Func<T,object>> filedNameExpression, object fieldValue);
|
|||
|
IUpdateable<T> SetColumnsIF(bool isUpdateColumns, Expression<Func<T, object>> filedNameExpression, object fieldValue);
|
|||
|
IUpdateable<T> UpdateColumnsIF(bool isUpdateColumns,Expression<Func<T, object>> columns);
|
|||
|
IUpdateable<T> UpdateColumnsIF(bool isUpdateColumns, params string[] columns);
|
|||
|
|
|||
|
|
|||
|
IUpdateable<T> SetColumnsIF(bool isUpdateColumns,Expression<Func<T, T>> columns);
|
|||
|
IUpdateable<T> SetColumnsIF(bool isUpdateColumns, Expression<Func<T, bool>> columns);
|
|||
|
|
|||
|
|
|||
|
|
|||
|
IUpdateable<T> IgnoreColumns(bool ignoreAllNullColumns, bool isOffIdentity = false, bool ignoreAllDefaultValue = false);
|
|||
|
IUpdateable<T> IgnoreColumns(Expression<Func<T, object>> columns);
|
|||
|
IUpdateable<T> IgnoreColumnsIF(bool isIgnore, Expression<Func<T, object>> columns);
|
|||
|
|
|||
|
IUpdateable<T> IgnoreColumns(params string[] columns);
|
|||
|
|
|||
|
|
|||
|
|
|||
|
IUpdateable<T> IsEnableUpdateVersionValidation();
|
|||
|
IUpdateable<T> EnableDiffLogEvent(object businessData = null);
|
|||
|
IUpdateable<T> EnableDiffLogEventIF(bool isEnableDiffLog,object businessData = null);
|
|||
|
IUpdateable<T> ReSetValue(Action<T> setValueExpression);
|
|||
|
IUpdateable<T> RemoveDataCache();
|
|||
|
IUpdateable<T> RemoveDataCache(string likeString);
|
|||
|
IUpdateable<T> CallEntityMethod(Expression<Action<T>> method);
|
|||
|
KeyValuePair<string,List<SugarParameter>> ToSql();
|
|||
|
string ToSqlString();
|
|||
|
void AddQueue();
|
|||
|
SplitTableUpdateProvider<T> SplitTable(Func<List<SplitTableInfo>, IEnumerable<SplitTableInfo>> getTableNamesFunc);
|
|||
|
SplitTableUpdateByObjectProvider<T> SplitTable();
|
|||
|
IUpdateable<T> EnableQueryFilter();
|
|||
|
IUpdateable<T> Clone();
|
|||
|
}
|
|||
|
}
|