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

Commit 742b76b

Browse files
authored
Update README.md
1 parent 45156b8 commit 742b76b

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
@@ -159,6 +159,25 @@ var query = db.From<User>().GroupBy(u => u.Age.IsNull(0)).Select(u => new { u.Ag
159159
var result = db.Select(query);
160160
```
161161

162+
#### All available extensions
163+
```
164+
Sum()
165+
Min()
166+
Max()
167+
Average()
168+
Count()
169+
Between(start, end)
170+
In(value1, value2, ...)
171+
Like(string)
172+
TrimSql()
173+
Length()
174+
Upper()
175+
Lower()
176+
IsNull(otherValue)
177+
Cast<To>()
178+
As(alias)
179+
```
180+
162181
### Record Maintenance
163182

164183
#### Insert

0 commit comments

Comments
 (0)