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

Commit 5cbcec1

Browse files
committed
fix readme
1 parent 329a5df commit 5cbcec1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ If you're using an IOC you can register `OrmLiteConnectionFactory` as a **single
8888

8989
```csharp
9090
container.Register<IDbConnectionFactory>(c =>
91-
OrmLiteConnectionFactory(":memory:", SqliteDialect.Provider)); //E.g of In Memory Sqlite DB
91+
OrmLiteConnectionFactory(":memory:", SqliteDialect.Provider)); //In Memory Sqlite DB
9292
```
9393

9494
Use the `dbFactory` to open an ADO.NET DB Connection to your database.
@@ -114,8 +114,8 @@ using (var db = dbFactory.Open())
114114
You can customize, enhance or replace how OrmLite handles different .NET Types with
115115
[OrmLite Type Converters](https://github.com/ServiceStack/ServiceStack.OrmLite/wiki/OrmLite-Type-Converters).
116116

117-
See the [[SQL Server Types]] wiki for how to enable support for SQL Server-specific
118-
`SqlGeography`, `SqlGeometry` and `SqlHierarchyId` Types.
117+
See the [docs on SQL Server Types](https://github.com/ServiceStack/ServiceStack.OrmLite/wiki/SQL-Server-Types)
118+
for how to enable support for SQL Server-specific `SqlGeography`, `SqlGeometry` and `SqlHierarchyId` Types.
119119

120120
## Dynamic Result Sets
121121

0 commit comments

Comments
 (0)