Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit f7c2770

Browse files
committed
Add spacing for better readability
1 parent d6ae9f2 commit f7c2770

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,11 @@ From v4.0.16 you can now use typed sql expressions in Custom SQL API's
9393

9494
```csharp
9595
List<Person> results = db.SqlList<Person>(db.From<Person>().Select("*").Where(q => q.Age < 50));
96+
9697
List<string> results = db.SqlColumn<string>(db.From<Person>().Select(x => x.LastName);
98+
9799
HashSet<int> results = db.ColumnDistinct<int>(db.From<Person>().Select(x => x.Age);
100+
98101
int result = db.SqlScalar<int>(db.From<Person>().Select(Sql.Count("*")).Where(q => q.Age < 50));
99102
```
100103

0 commit comments

Comments
 (0)