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

Commit 42b0a65

Browse files
committed
fix docs
1 parent 7a6e77d commit 42b0a65

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,9 @@ var usaCustomerOrders = db.Select(db.From<Order>()
240240

241241
# API Examples
242242

243-
OrmLite's SQL Expression support lets you use LINQ-liked querying in all our providers.
244-
To give you a flavour here are some examples with their partial SQL output (using SqlServer dialect):
243+
OrmLite provides terse and intuitive typed API's for database querying from simple
244+
lambda expressions to more complex LINQ-Like Typed SQL Expressions which you can use to
245+
construct more complex queries. To give you a flavour here are some examples:
245246

246247
### Querying with SELECT
247248

@@ -275,9 +276,6 @@ db.Select<Author>(q => q.Name.Contains("Benedict"));
275276
db.Select<Author>(q => q.Rate == 10 && q.City == "Mexico");
276277
```
277278

278-
Right now the Expression support can satisfy most simple queries with a strong-typed API.
279-
For anything more complex (e.g. queries with table joins) you can still easily fall back to raw SQL queries as seen below.
280-
281279
### Convenient common usage data access patterns
282280

283281
OrmLite also includes a number of convenient API's providing DRY, typed data access for common queries:
@@ -1305,7 +1303,9 @@ OrmLite's T4 support can be added via NuGet with:
13051303

13061304
## Typed SqlExpressions with Custom SQL APIs
13071305

1308-
The Custom SQL API's allow you to map custom SqlExpressions into different responses:
1306+
OrmLite's Expression support satisfies the most common RDBMS queries with a strong-typed API.
1307+
For more complex queries you can easily fall back to raw SQL where the Custom SQL API's
1308+
let you to map custom SqlExpressions into different responses:
13091309

13101310
```csharp
13111311
List<Person> results = db.SqlList<Person>(

0 commit comments

Comments
 (0)