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.
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ OrmLite was designed with a focus on the core objectives:
15
15
* Create/Drop DB Table schemas using nothing but POCO class definitions (IOTW a true code-first ORM)
16
16
* Simplicity - typed, wrist friendly API for common data access patterns.
17
17
* High performance - with support for indexes, text blobs, etc.
18
-
* Amongst the [fastest Micro ORMs](http://mono.servicestack.net/benchmarks/) for .NET.
18
+
* Amongst the [fastest Micro ORMs](https://servicestackv3.github.io/Mono/src/Mono/benchmarks/default.htm) for .NET.
19
19
* Expressive power and flexibility - with access to IDbCommand and raw SQL
20
20
* Cross platform - supports multiple dbs (currently: Sql Server, Sqlite, MySql, PostgreSQL, Firebird) running on both .NET and Mono platforms.
21
21
@@ -2571,7 +2571,7 @@ foreach (var newRobot in newRobots)
2571
2571
Using the [SQLite Manager](https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/?src=search) Firefox extension
2572
2572
we can peek at one of the created shards to see 100 Robots in each shard. This is the dump of `robots-shard0.sqlite`:
2573
2573
2574
-

2574
+

2575
2575
2576
2576
As expected each shard has every 10th robot inside.
2577
2577
@@ -2766,11 +2766,11 @@ using (IDbConnection db = Config.OpenDbConnection())
2766
2766
2767
2767
Running this against a SQL Server database will yield the results below:
2768
2768
2769
-
[](http://www.servicestack.net/files/ormlite-example.png)
2769
+
[](https://raw.githubusercontent.com/ServiceStack/docs/master/docs/images/ormlite/ormlite-example.png)
2770
2770
2771
-
Notice the POCO types are stored in the [very fast](http://mono.servicestack.net/mythz_blog/?p=176)
2772
-
and [Versatile](http://mono.servicestack.net/mythz_blog/?p=314)
2773
-
[JSV Format](https://github.com/ServiceStack/ServiceStack.Text/wiki/JSV-Format) which although hard to do -
2771
+
Notice the POCO types are stored in the [very fast](https://github.com/ServiceStackV3/mythz_blog/blob/master/pages/176.md)
2772
+
and [Versatile](https://github.com/ServiceStackV3/mythz_blog/blob/master/pages/314.md)
2773
+
[JSV Format](https://docs.servicestack.net/jsv-format) which although hard to do -
2774
2774
is actually more compact, human and parser-friendly than JSON :)
0 commit comments