mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-06-28 13:34:32 +08:00
Adjust code
This commit is contained in:
parent
56aff5201b
commit
bf424f1959
@ -6,13 +6,13 @@ using System.Threading.Tasks;
|
|||||||
|
|
||||||
namespace SqlSugar
|
namespace SqlSugar
|
||||||
{
|
{
|
||||||
internal class ReSetValueBySqlExpListModel
|
public class ReSetValueBySqlExpListModel
|
||||||
{
|
{
|
||||||
public string DbColumnName { get; set; }
|
public string DbColumnName { get; set; }
|
||||||
public string Sql { get; set; }
|
public string Sql { get; set; }
|
||||||
public ReSetValueBySqlExpListModelType? Type { get; set; }
|
public ReSetValueBySqlExpListModelType? Type { get; set; }
|
||||||
}
|
}
|
||||||
internal enum ReSetValueBySqlExpListModelType
|
public enum ReSetValueBySqlExpListModelType
|
||||||
{
|
{
|
||||||
Default,
|
Default,
|
||||||
List
|
List
|
||||||
|
@ -36,7 +36,7 @@ namespace SqlSugar
|
|||||||
public List<string> UpdateColumns { get; set; }
|
public List<string> UpdateColumns { get; set; }
|
||||||
public List<JoinQueryInfo> JoinInfos { get; set; }
|
public List<JoinQueryInfo> JoinInfos { get; set; }
|
||||||
public string ShortName { get; set; }
|
public string ShortName { get; set; }
|
||||||
internal Dictionary<string, ReSetValueBySqlExpListModel> ReSetValueBySqlExpList { get; set; }
|
public Dictionary<string, ReSetValueBySqlExpListModel> ReSetValueBySqlExpList { get; set; }
|
||||||
public virtual string ReSetValueBySqlExpListType { get; set; }
|
public virtual string ReSetValueBySqlExpListType { get; set; }
|
||||||
public virtual string SqlTemplate
|
public virtual string SqlTemplate
|
||||||
{
|
{
|
||||||
|
@ -412,7 +412,7 @@ namespace SqlSugar
|
|||||||
}
|
}
|
||||||
return N;
|
return N;
|
||||||
}
|
}
|
||||||
internal bool IsVarchar()
|
public bool IsVarchar()
|
||||||
{
|
{
|
||||||
if (_Context.CurrentConnectionConfig.MoreSettings != null && _Context.CurrentConnectionConfig.MoreSettings.DisableNvarchar)
|
if (_Context.CurrentConnectionConfig.MoreSettings != null && _Context.CurrentConnectionConfig.MoreSettings.DisableNvarchar)
|
||||||
{
|
{
|
||||||
|
@ -30,6 +30,6 @@ namespace SqlSugar
|
|||||||
public string InsertSql { get; set; }
|
public string InsertSql { get; set; }
|
||||||
public bool UpdateServerTime { get; set; }
|
public bool UpdateServerTime { get; set; }
|
||||||
public string UpdateSql { get; set; }
|
public string UpdateSql { get; set; }
|
||||||
internal object SqlParameterDbType { get; set; }
|
public object SqlParameterDbType { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user