Commit 4d932b58 authored by Marc Gravell's avatar Marc Gravell

Repackage Dapper.EF to fix System.Runtime; deploy as .52; fix xunit refs; add test for #570

parent e15cb95d
...@@ -55,7 +55,6 @@ ...@@ -55,7 +55,6 @@
"System.Configuration": "4.0.0.0", "System.Configuration": "4.0.0.0",
"System.Data": "4.0.0.0", "System.Data": "4.0.0.0",
"System.Data.Linq": "4.0.0.0", "System.Data.Linq": "4.0.0.0",
"System.Runtime": "4.0.0.0",
"System.Xml": "4.0.0.0" "System.Xml": "4.0.0.0"
}, },
"dependencies": { "dependencies": {
......
...@@ -46,7 +46,6 @@ ...@@ -46,7 +46,6 @@
"System.Configuration": "4.0.0.0", "System.Configuration": "4.0.0.0",
"System.Data": "4.0.0.0", "System.Data": "4.0.0.0",
"System.Data.Linq": "4.0.0.0", "System.Data.Linq": "4.0.0.0",
"System.Runtime": "4.0.0.0",
"System.Xml": "4.0.0.0" "System.Xml": "4.0.0.0"
}, },
"dependencies": { "dependencies": {
......
...@@ -25,8 +25,7 @@ ...@@ -25,8 +25,7 @@
"Dapper.SqlBuilder": { "Dapper.SqlBuilder": {
"target": "project" "target": "project"
}, },
"xunit": "2.2.0-beta2-build3300", "xunit": "2.1.0"
"dotnet-test-xunit": "2.2.0-preview2-build1029"
}, },
"buildOptions": { "buildOptions": {
"warningsAsErrors": true, "warningsAsErrors": true,
...@@ -97,6 +96,10 @@ ...@@ -97,6 +96,10 @@
// } // }
//}, //},
"netcoreapp1.0": { "netcoreapp1.0": {
"imports": [
"portable-net451+win8",
"dnxcore50"
],
"buildOptions": { "buildOptions": {
"define": [ "COREFX", "ASYNC", "XUNIT2" ] "define": [ "COREFX", "ASYNC", "XUNIT2" ]
}, },
......
...@@ -2526,6 +2526,22 @@ public void Issue22_ExecuteScalar() ...@@ -2526,6 +2526,22 @@ public void Issue22_ExecuteScalar()
#endif #endif
} }
#if ENTITY_FRAMEWORK
public void Issue570_DbGeo_HasValues()
{
Dapper.EntityFramework.Handlers.Register();
string redmond = "POINT (122.1215 47.6740)";
DbGeography point = DbGeography.PointFromText(redmond, DbGeography.DefaultCoordinateSystemId);
DbGeography orig = point.Buffer(20);
var fromDb = connection.QuerySingle<DbGeography>("declare @geos table(geo geography); insert @geos(geo) values(@val); select * from @geos",
new { val = orig });
fromDb.Area.IsNotNull();
fromDb.Area.IsEqualTo(orig.Area);
}
#endif
[Fact] [Fact]
public void Issue142_FailsNamedStatus() public void Issue142_FailsNamedStatus()
{ {
......
...@@ -22,8 +22,8 @@ ...@@ -22,8 +22,8 @@
"Dapper.Contrib": { "Dapper.Contrib": {
"target": "project" "target": "project"
}, },
"xunit": "2.1.0", "xunit": "2.2.0-beta2-build3300",
"xunit.assert": "2.1.0" "dotnet-test-xunit": "2.2.0-preview2-build1029"
}, },
"buildOptions": { "buildOptions": {
"warningsAsErrors": true, "warningsAsErrors": true,
...@@ -98,7 +98,6 @@ ...@@ -98,7 +98,6 @@
"System.Configuration": "4.0.0.0", "System.Configuration": "4.0.0.0",
"System.Data": "4.0.0.0", "System.Data": "4.0.0.0",
"System.Data.Linq": "4.0.0.0", "System.Data.Linq": "4.0.0.0",
"System.Runtime": "4.0.10.0",
"System.Xml": "4.0.0.0", "System.Xml": "4.0.0.0",
"System.Xml.Linq": "4.0.0.0" "System.Xml.Linq": "4.0.0.0"
}, },
...@@ -106,6 +105,7 @@ ...@@ -106,6 +105,7 @@
"Dapper.EntityFramework": { "Dapper.EntityFramework": {
"target": "project" "target": "project"
}, },
"System.Runtime": "4.1.0",
"EntityFramework": "6.1.3", "EntityFramework": "6.1.3",
"FirebirdSql.Data.FirebirdClient": "4.10.0", "FirebirdSql.Data.FirebirdClient": "4.10.0",
"Microsoft.SqlServer.Compact": "4.0.8876.1", "Microsoft.SqlServer.Compact": "4.0.8876.1",
...@@ -123,19 +123,22 @@ ...@@ -123,19 +123,22 @@
"Susanoo.SqlServer": "1.2.4", "Susanoo.SqlServer": "1.2.4",
"System.Data.SQLite": "1.0.99" "System.Data.SQLite": "1.0.99"
} }
},
"netcoreapp1.0": {
"imports": [
"portable-net451+win8",
"dnxcore50"
],
"buildOptions": {
"define": [ "ASYNC", "COREFX", "XUNIT2", "SQLITE" ]
},
"dependencies": {
"Microsoft.NETCore.App": {
"version": "1.0.0",
"type": "platform"
},
"Microsoft.Data.Sqlite": "1.0.0"
}
} }
//,
//"netcoreapp1.0": {
// "buildOptions": {
// "define": [ "ASYNC", "COREFX", "XUNIT2", "SQLITE" ]
// },
// "dependencies": {
// "Microsoft.NETCore.App": {
// "version": "1.0.0",
// "type": "platform"
// },
// "Microsoft.Data.Sqlite": "1.0.0"
// }
//}
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment