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

Commit 4875f66

Browse files
committed
wrap to prevent scrolling
1 parent f7c2770 commit 4875f66

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -323,26 +323,30 @@ bool has42YearOlds = db.Exists<Person>(new { Age = 42 });
323323
**WHERE "Age" = @Age**
324324

325325
```csharp
326-
List<string> results = db.Column<string>(db.From<Person>().Select(x => x.LastName).Where(q => q.Age == 27));
326+
List<string> results = db.Column<string>(db.From<Person>().Select(x => x.LastName)
327+
.Where(q => q.Age == 27));
327328
```
328329

329330
**SELECT "LastName" FROM "Person" WHERE ("Age" = 27)**
330331

331332
```csharp
332-
HashSet<int> results = db.ColumnDistinct<int>(db.From<Person>().Select(x => x.Age).Where(q => q.Age < 50));
333+
HashSet<int> results = db.ColumnDistinct<int>(db.From<Person>().Select(x => x.Age)
334+
.Where(q => q.Age < 50));
333335
```
334336

335337
**SELECT "Age" FROM "Person" WHERE ("Age" < 50)**
336338

337339
```csharp
338-
Dictionary<int,string> results = db.Dictionary<int, string>(db.From<Person>().Select(x => new { x.Id, x.LastName }).Where(x => x.Age < 50));
340+
Dictionary<int,string> results = db.Dictionary<int, string>(
341+
db.From<Person>().Select(x => new { x.Id, x.LastName }).Where(x => x.Age < 50));
339342
```
340343

341344
**SELECT "Id","LastName" FROM "Person" WHERE ("Age" < 50)**
342345

343346

344347
```csharp
345-
Dictionary<int, List<string>> results = db.Lookup<int, string>(db.From<Person>().Select(x => new { x.Age, x.LastName }).Where(q => q.Age < 50));
348+
Dictionary<int, List<string>> results = db.Lookup<int, string>(
349+
db.From<Person>().Select(x => new { x.Age, x.LastName }).Where(q => q.Age < 50));
346350
```
347351

348352
**SELECT "Age","LastName" FROM "Person" WHERE ("Age" < 50)**

0 commit comments

Comments
 (0)