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

Commit 257449c

Browse files
committed
fix links
1 parent e54877c commit 257449c

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
@@ -15,7 +15,7 @@ OrmLite was designed with a focus on the core objectives:
1515
* Create/Drop DB Table schemas using nothing but POCO class definitions (IOTW a true code-first ORM)
1616
* Simplicity - typed, wrist friendly API for common data access patterns.
1717
* 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.
1919
* Expressive power and flexibility - with access to IDbCommand and raw SQL
2020
* Cross platform - supports multiple dbs (currently: Sql Server, Sqlite, MySql, PostgreSQL, Firebird) running on both .NET and Mono platforms.
2121

@@ -2571,7 +2571,7 @@ foreach (var newRobot in newRobots)
25712571
Using the [SQLite Manager](https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/?src=search) Firefox extension
25722572
we can peek at one of the created shards to see 100 Robots in each shard. This is the dump of `robots-shard0.sqlite`:
25732573

2574-
![Data dump of Robot Shard #1](http://mono.servicestack.net/files/robots-shard0.png)
2574+
![Data dump of Robot Shard #1](https://raw.githubusercontent.com/ServiceStack/docs/master/docs/images/ormlite/robots-shard0.sqlite.jpg)
25752575

25762576
As expected each shard has every 10th robot inside.
25772577

@@ -2766,11 +2766,11 @@ using (IDbConnection db = Config.OpenDbConnection())
27662766

27672767
Running this against a SQL Server database will yield the results below:
27682768

2769-
[![SQL Server Management Studio results](http://mono.servicestack.net/files/ormlite-example.png)](http://www.servicestack.net/files/ormlite-example.png)
2769+
[![SQL Server Management Studio results](https://raw.githubusercontent.com/ServiceStack/docs/master/docs/images/ormlite/ormlite-example.png)](https://raw.githubusercontent.com/ServiceStack/docs/master/docs/images/ormlite/ormlite-example.png)
27702770

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 -
27742774
is actually more compact, human and parser-friendly than JSON :)
27752775

27762776
### Ignoring DTO Properties

0 commit comments

Comments
 (0)