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 +2
-3
lines changed
src/ServiceStack.OrmLite.SqlServerTests/Converters Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using System . Configuration ;
3
- using System . Data ;
4
3
using NUnit . Framework ;
5
4
using ServiceStack . Logging ;
6
5
using ServiceStack . OrmLite . SqlServer . Converters ;
@@ -44,7 +43,7 @@ public override void TestFixtureSetUp()
44
43
// Appending the Sql Server Type System Version to use SqlServerSpatial110.dll (2012) assembly
45
44
// Sql Server defaults to SqlServerSpatial100.dll (2008 R2) even for versions greater
46
45
// https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.connectionstring.aspx
47
- ConnectionString = ConfigurationManager . ConnectionStrings [ "testDb" ] . ConnectionString + "Type System Version=SQL Server 2014 ;" ;
46
+ ConnectionString = ConfigurationManager . ConnectionStrings [ "testDb" ] . ConnectionString + "Type System Version=SQL Server 2012 ;" ;
48
47
49
48
var dialectProvider = SqlServerConverters . Configure ( SqlServer2014Dialect . Provider ) ;
50
49
@@ -69,7 +68,7 @@ public override void TestFixtureSetUp()
69
68
// Appending the Sql Server Type System Version to use SqlServerSpatial110.dll (2012) assembly
70
69
// Sql Server defaults to SqlServerSpatial100.dll (2008 R2) even for versions greater
71
70
// https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.connectionstring.aspx
72
- ConnectionString = ConfigurationManager . ConnectionStrings [ "testDb" ] . ConnectionString + "Type System Version=SQL Server 2016 ;" ;
71
+ ConnectionString = ConfigurationManager . ConnectionStrings [ "testDb" ] . ConnectionString + "Type System Version=SQL Server 2012 ;" ;
73
72
74
73
var dialectProvider = SqlServerConverters . Configure ( SqlServer2016Dialect . Provider ) ;
75
74
You can’t perform that action at this time.
0 commit comments