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

Commit 1e223f0

Browse files
committed
Move heading above text so its visible when linked
1 parent 3148617 commit 1e223f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1245,11 +1245,11 @@ using (var db = OpenDbConnection())
12451245
}
12461246
```
12471247

1248-
Results filters makes it trivial to implement the `CaptureSqlFilter` which allows you to capture SQL Statements without running them, e.g:
1249-
12501248
### CaptureSqlFilter
12511249

1252-
[CaptureSqlFilter](https://github.com/ServiceStack/ServiceStack.OrmLite/blob/4c56bde197d07cfc78a80be06dd557732ecf68fa/src/ServiceStack.OrmLite/OrmLiteResultsFilter.cs#L321) is an simple Results Filter which can be used to quickly found out what SQL your DB calls generate by surrounding DB access in a using scope like:
1250+
Results filters makes it trivial to implement the `CaptureSqlFilter` which allows you to capture SQL Statements without running them.
1251+
[CaptureSqlFilter](https://github.com/ServiceStack/ServiceStack.OrmLite/blob/4c56bde197d07cfc78a80be06dd557732ecf68fa/src/ServiceStack.OrmLite/OrmLiteResultsFilter.cs#L321)
1252+
is just a simple Results Filter which can be used to quickly found out what SQL your DB calls generate by surrounding DB access in a using scope, e.g:
12531253

12541254
```csharp
12551255
using (var captured = new CaptureSqlFilter())

0 commit comments

Comments
 (0)