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
88
88
89
89
``` csharp
90
90
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
92
92
```
93
93
94
94
Use the ` dbFactory ` to open an ADO.NET DB Connection to your database.
@@ -114,8 +114,8 @@ using (var db = dbFactory.Open())
114
114
You can customize, enhance or replace how OrmLite handles different .NET Types with
115
115
[ OrmLite Type Converters] ( https://github.com/ServiceStack/ServiceStack.OrmLite/wiki/OrmLite-Type-Converters ) .
116
116
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.
119
119
120
120
## Dynamic Result Sets
121
121
You can’t perform that action at this time.
0 commit comments