|
@ -1,7 +1,9 @@ |
|
|
using System; |
|
|
using System; |
|
|
using System.Collections.Generic; |
|
|
using System.Collections.Generic; |
|
|
using System.Data; |
|
|
using System.Data; |
|
|
|
|
|
using System.Dynamic; |
|
|
using System.Linq; |
|
|
using System.Linq; |
|
|
|
|
|
using System.Linq.Expressions; |
|
|
using System.Text; |
|
|
using System.Text; |
|
|
using System.Threading.Tasks; |
|
|
using System.Threading.Tasks; |
|
|
namespace SqlSugar |
|
|
namespace SqlSugar |
|
@ -12,8 +14,7 @@ namespace SqlSugar |
|
|
CommandType CommandType { get; set; } |
|
|
CommandType CommandType { get; set; } |
|
|
String AppendWhereOrAnd(bool isWhere, string sqlString); |
|
|
String AppendWhereOrAnd(bool isWhere, string sqlString); |
|
|
string AppendHaving(string sqlString); |
|
|
string AppendHaving(string sqlString); |
|
|
string SqlTranslationLeft { get; } |
|
|
|
|
|
string SqlTranslationRight { get; } |
|
|
|
|
|
SqlQueryBuilder SqlQueryBuilder { get; set; } |
|
|
SqlQueryBuilder SqlQueryBuilder { get; set; } |
|
|
QueryBuilder QueryBuilder { get; set; } |
|
|
QueryBuilder QueryBuilder { get; set; } |
|
|
InsertBuilder InsertBuilder { get; set; } |
|
|
InsertBuilder InsertBuilder { get; set; } |
|
@ -23,6 +24,9 @@ namespace SqlSugar |
|
|
string SqlParameterKeyWord { get; } |
|
|
string SqlParameterKeyWord { get; } |
|
|
string SqlFalse { get; } |
|
|
string SqlFalse { get; } |
|
|
string SqlDateNow { get; } |
|
|
string SqlDateNow { get; } |
|
|
|
|
|
string SqlTranslationLeft { get; } |
|
|
|
|
|
string SqlTranslationRight { get; } |
|
|
|
|
|
string SqlSelectAll { get; } |
|
|
|
|
|
|
|
|
string GetTranslationTableName(string name); |
|
|
string GetTranslationTableName(string name); |
|
|
string GetTranslationColumnName(string entityName, string propertyName); |
|
|
string GetTranslationColumnName(string entityName, string propertyName); |
|
|