mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-22 02:32:50 +08:00
update
This commit is contained in:
parent
e5c813c2ce
commit
6722cb33c7
@ -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();
|
||||||
|
@ -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 方法
|
||||||
|
...
|
||||||
|
|
||||||
# 更多文档整理中。。。
|
# 更多文档整理中。。。
|
Loading…
x
Reference in New Issue
Block a user