You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 24, 2022. It is now read-only.
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)
[.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
+
138
185
## Dynamic Result Sets
139
186
140
187
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>()
191
238
.Where(q=>Sql.In(q.CustomerId, usaCustomerIds)));
192
239
```
193
240
194
-
# Async API Overview
195
-
196
-
A quick overview of Async API's can be seen in the class diagram below:
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)
[.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
-
240
241
# API Examples
241
242
242
243
OrmLite's SQL Expression support lets you use LINQ-liked querying in all our providers.
0 commit comments