@@ -323,26 +323,30 @@ bool has42YearOlds = db.Exists<Person>(new { Age = 42 });
323
323
** WHERE " Age" = @Age **
324
324
325
325
```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 ));
327
328
```
328
329
329
330
** SELECT " LastName" FROM " Person" WHERE (" Age" = 27 )**
330
331
331
332
```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 ));
333
335
```
334
336
335
337
** SELECT " Age" FROM " Person" WHERE (" Age" < 50 )**
336
338
337
339
```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 ));
339
342
```
340
343
341
344
** SELECT " Id" ," LastName" FROM " Person" WHERE (" Age" < 50 )**
342
345
343
346
344
347
```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 ));
346
350
```
347
351
348
352
** SELECT " Age" ," LastName" FROM " Person" WHERE (" Age" < 50 )**
0 commit comments