This repository was archived by the owner on Dec 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ If you're using an IOC you can register `OrmLiteConnectionFactory` as a **single
8888
8989``` csharp
9090container .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
9494Use the ` dbFactory ` to open an ADO.NET DB Connection to your database.
@@ -114,8 +114,8 @@ using (var db = dbFactory.Open())
114114You 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
You can’t perform that action at this time.
0 commit comments