Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.

Commit fc82963

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents f9f8aad + 742b76b commit fc82963

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

‎README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,25 @@ var query = db.From<User>().GroupBy(u => u.Age.IsNull(0)).Select(u => new { u.Ag
169169
var result = db.Select(query);
170170
```
171171

172+
#### All available extensions
173+
```
174+
Sum()
175+
Min()
176+
Max()
177+
Average()
178+
Count()
179+
Between(start, end)
180+
In(value1, value2, ...)
181+
Like(string)
182+
TrimSql()
183+
Length()
184+
Upper()
185+
Lower()
186+
IsNull(otherValue)
187+
Cast<To>()
188+
As(alias)
189+
```
190+
172191
### Record Maintenance
173192

174193
#### Insert

0 commit comments

Comments
 (0)