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

Commit 9139a24

Browse files
committed
move new features to match importance
1 parent 6c5a8e5 commit 9139a24

File tree

1 file changed

+47
-46
lines changed

1 file changed

+47
-46
lines changed

README.md

+47-46
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,53 @@ There's also support for SQL Server-specific `SqlGeography`, `SqlGeometry` and `
135135
See [docs on SQL Server Types](https://github.com/ServiceStack/ServiceStack.OrmLite/wiki/SQL-Server-Types)
136136
for instructions on how to enable them.
137137

138+
# Async API Overview
139+
140+
A quick overview of Async API's can be seen in the class diagram below:
141+
142+
![OrmLite Async APIs](https://raw.githubusercontent.com/ServiceStack/Assets/master/img/ormlite/OrmLiteApiAsync.png)
143+
144+
Essentially most of OrmLite public API's now have async equivalents of the same name and an additional conventional `*Async` suffix.
145+
The Async API's also take an optional `CancellationToken` making converting sync code trivial, where you just need to
146+
add the `Async` suffix and **await** keyword, as can be seen in the
147+
[Customer Orders UseCase upgrade to Async diff](https://github.com/ServiceStack/ServiceStack.OrmLite/commit/c1ce6f0eac99133fc232b263c26c42379d4c5f48)
148+
, e.g:
149+
150+
Sync:
151+
152+
```csharp
153+
db.Insert(new Employee { Id = 1, Name = "Employee 1" });
154+
db.Save(product1, product2);
155+
var customer = db.Single<Customer>(new { customer.Email });
156+
```
157+
158+
Async:
159+
160+
```csharp
161+
await db.InsertAsync(new Employee { Id = 1, Name = "Employee 1" });
162+
await db.SaveAsync(product1, product2);
163+
var customer = await db.SingleAsync<Customer>(new { customer.Email });
164+
```
165+
166+
> Effectively the only Data Access API's that doesn't have async equivalents are `*Lazy` APIs yielding a lazy
167+
> sequence (incompatible with async) as well as **Schema** DDL API's which are typically not used at runtime.
168+
169+
For a quick preview of many of the new Async API's in action, checkout
170+
[ApiSqlServerTestsAsync.cs](https://github.com/ServiceStack/ServiceStack.OrmLite/blob/master/tests/ServiceStack.OrmLiteV45.Tests/ApiSqlServerTestsAsync.cs).
171+
172+
### Async RDBMS Providers
173+
174+
Currently only a limited number of RDBMS providers offer async API's which are only available in their **.NET 4.5** builds, which at this time are only:
175+
176+
- [SQL Server .NET 4.5+](https://www.nuget.org/packages/ServiceStack.OrmLite.SqlServer)
177+
- [MySQL .NET 4.5+](https://www.nuget.org/packages/ServiceStack.OrmLite.MySql)
178+
179+
We've also added a
180+
[.NET 4.5 build for Sqlite](https://www.nuget.org/packages/ServiceStack.OrmLite.Sqlite.Mono)
181+
as it's a common use-case to swapout to use Sqlite's in-memory provider for faster tests.
182+
But as Sqlite doesn't provide async API's under-the-hood we fallback to *pseudo async* support where we just wrap its synchronous responses in `Task` results.
183+
184+
138185
## Dynamic Result Sets
139186

140187
There's new support for returning unstructured resultsets letting you Select `List<object>` instead of having results mapped to a concrete Poco class, e.g:
@@ -191,52 +238,6 @@ var usaCustomerOrders = db.Select(db.From<Order>()
191238
.Where(q => Sql.In(q.CustomerId, usaCustomerIds)));
192239
```
193240

194-
# Async API Overview
195-
196-
A quick overview of Async API's can be seen in the class diagram below:
197-
198-
![OrmLite Async APIs](https://raw.githubusercontent.com/ServiceStack/Assets/master/img/ormlite/OrmLiteApiAsync.png)
199-
200-
Essentially most of OrmLite public API's now have async equivalents of the same name and an additional conventional `*Async` suffix.
201-
The Async API's also take an optional `CancellationToken` making converting sync code trivial, where you just need to
202-
add the `Async` suffix and **await** keyword, as can be seen in the
203-
[Customer Orders UseCase upgrade to Async diff](https://github.com/ServiceStack/ServiceStack.OrmLite/commit/c1ce6f0eac99133fc232b263c26c42379d4c5f48)
204-
, e.g:
205-
206-
Sync:
207-
208-
```csharp
209-
db.Insert(new Employee { Id = 1, Name = "Employee 1" });
210-
db.Save(product1, product2);
211-
var customer = db.Single<Customer>(new { customer.Email });
212-
```
213-
214-
Async:
215-
216-
```csharp
217-
await db.InsertAsync(new Employee { Id = 1, Name = "Employee 1" });
218-
await db.SaveAsync(product1, product2);
219-
var customer = await db.SingleAsync<Customer>(new { customer.Email });
220-
```
221-
222-
> Effectively the only Data Access API's that doesn't have async equivalents are `*Lazy` APIs yielding a lazy
223-
> sequence (incompatible with async) as well as **Schema** DDL API's which are typically not used at runtime.
224-
225-
For a quick preview of many of the new Async API's in action, checkout
226-
[ApiSqlServerTestsAsync.cs](https://github.com/ServiceStack/ServiceStack.OrmLite/blob/master/tests/ServiceStack.OrmLiteV45.Tests/ApiSqlServerTestsAsync.cs).
227-
228-
### Async RDBMS Providers
229-
230-
Currently only a limited number of RDBMS providers offer async API's which are only available in their **.NET 4.5** builds, which at this time are only:
231-
232-
- [SQL Server .NET 4.5+](https://www.nuget.org/packages/ServiceStack.OrmLite.SqlServer)
233-
- [MySQL .NET 4.5+](https://www.nuget.org/packages/ServiceStack.OrmLite.MySql)
234-
235-
We've also added a
236-
[.NET 4.5 build for Sqlite](https://www.nuget.org/packages/ServiceStack.OrmLite.Sqlite.Mono)
237-
as it's a common use-case to swapout to use Sqlite's in-memory provider for faster tests.
238-
But as Sqlite doesn't provide async API's under-the-hood we fallback to *pseudo async* support where we just wrap its synchronous responses in `Task` results.
239-
240241
# API Examples
241242

242243
OrmLite's SQL Expression support lets you use LINQ-liked querying in all our providers.

0 commit comments

Comments
 (0)