This commit is contained in:
28810 2018-12-18 21:11:56 +08:00
parent e5c813c2ce
commit 6722cb33c7
2 changed files with 16 additions and 0 deletions

View File

@ -34,6 +34,14 @@ class TestTypeParentInfo {
# Where # Where
### 表达式函数支持
#### String 对象方法
StartsWith, EndsWith, Contains, ToLower, ToUpper, Substring, Length, IndexOf, PadLeft, PadRight, Trim, TrimStart, TrimEnd, Replace, CompareTo
#### Math 方法
...
### 单表 ### 单表
```csharp ```csharp
var sql = select.Where(a => a.Id == 10).ToSql(); var sql = select.Where(a => a.Id == 10).ToSql();

View File

@ -115,4 +115,12 @@ sql = select.LeftJoin("TestTypeInfo b on b.Guid = a.TestTypeInfoGuid and b.Name
//SELECT a.`Id` as1, a.`Clicks` as2, a.`TestTypeInfoGuid` as3, a.`Title` as4, a.`CreateTime` as5 FROM `tb_topic` a LEFT JOIN TestTypeInfo b on b.Guid = a.TestTypeInfoGuid and b.Name = ?bname //SELECT a.`Id` as1, a.`Clicks` as2, a.`TestTypeInfoGuid` as3, a.`Title` as4, a.`CreateTime` as5 FROM `tb_topic` a LEFT JOIN TestTypeInfo b on b.Guid = a.TestTypeInfoGuid and b.Name = ?bname
``` ```
### 表达式函数支持
#### String 对象方法
StartsWith, EndsWith, Contains, ToLower, ToUpper, Substring, Length, IndexOf, PadLeft, PadRight, Trim, TrimStart, TrimEnd, Replace, CompareTo
#### Math 方法
...
# 更多文档整理中。。。 # 更多文档整理中。。。