Skip to content

Commit

Permalink
Repackage Dapper.EF to fix System.Runtime; deploy as .52; fix xunit r…
Browse files Browse the repository at this point in the history
…efs; add test for DapperLib#570
  • Loading branch information
Marc Gravell authored and Marc Gravell committed Jul 24, 2016
1 parent e15cb95 commit 4d932b5
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 20 deletions.
1 change: 0 additions & 1 deletion Dapper.EntityFramework.StrongName/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
"System.Configuration": "4.0.0.0",
"System.Data": "4.0.0.0",
"System.Data.Linq": "4.0.0.0",
"System.Runtime": "4.0.0.0",
"System.Xml": "4.0.0.0"
},
"dependencies": {
Expand Down
1 change: 0 additions & 1 deletion Dapper.EntityFramework/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
"System.Configuration": "4.0.0.0",
"System.Data": "4.0.0.0",
"System.Data.Linq": "4.0.0.0",
"System.Runtime": "4.0.0.0",
"System.Xml": "4.0.0.0"
},
"dependencies": {
Expand Down
7 changes: 5 additions & 2 deletions Dapper.Tests.Contrib/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
"Dapper.SqlBuilder": {
"target": "project"
},
"xunit": "2.2.0-beta2-build3300",
"dotnet-test-xunit": "2.2.0-preview2-build1029"
"xunit": "2.1.0"
},
"buildOptions": {
"warningsAsErrors": true,
Expand Down Expand Up @@ -97,6 +96,10 @@
// }
//},
"netcoreapp1.0": {
"imports": [
"portable-net451+win8",
"dnxcore50"
],
"buildOptions": {
"define": [ "COREFX", "ASYNC", "XUNIT2" ]
},
Expand Down
16 changes: 16 additions & 0 deletions Dapper.Tests/Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2526,6 +2526,22 @@ public void Issue22_ExecuteScalar()
#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]
public void Issue142_FailsNamedStatus()
{
Expand Down
35 changes: 19 additions & 16 deletions Dapper.Tests/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"Dapper.Contrib": {
"target": "project"
},
"xunit": "2.1.0",
"xunit.assert": "2.1.0"
"xunit": "2.2.0-beta2-build3300",
"dotnet-test-xunit": "2.2.0-preview2-build1029"
},
"buildOptions": {
"warningsAsErrors": true,
Expand Down Expand Up @@ -98,14 +98,14 @@
"System.Configuration": "4.0.0.0",
"System.Data": "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.Linq": "4.0.0.0"
},
"dependencies": {
"Dapper.EntityFramework": {
"target": "project"
},
"System.Runtime": "4.1.0",
"EntityFramework": "6.1.3",
"FirebirdSql.Data.FirebirdClient": "4.10.0",
"Microsoft.SqlServer.Compact": "4.0.8876.1",
Expand All @@ -123,19 +123,22 @@
"Susanoo.SqlServer": "1.2.4",
"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"
// }
//}
}
}

0 comments on commit 4d932b5

Please sign in to comment.