Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
Dapper
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tsai
Dapper
Commits
62bdcd1b
Commit
62bdcd1b
authored
Aug 28, 2014
by
Marc Gravell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.33: SqlGeometry (core) and DbGeometry (EF) support
parent
54bc52b3
Changes
17
Show whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
94 additions
and
66 deletions
+94
-66
AssemblyInfo.cs
Dapper NET40/Properties/AssemblyInfo.cs
+2
-2
SqlMapper.cs
Dapper NET40/SqlMapper.cs
+8
-5
AssemblyInfo.cs
Dapper.Contrib.Tests/Properties/AssemblyInfo.cs
+2
-2
AssemblyInfo.cs
Dapper.Contrib/Properties/AssemblyInfo.cs
+2
-2
Dapper.EntityFramework NET40.csproj
...EntityFramework NET40/Dapper.EntityFramework NET40.csproj
+9
-1
AssemblyInfo.cs
Dapper.EntityFramework NET40/Properties/AssemblyInfo.cs
+0
-36
Dapper.EntityFramework NET45.csproj
...EntityFramework NET45/Dapper.EntityFramework NET45.csproj
+1
-0
DbGeometryHandler.cs
Dapper.EntityFramework NET45/DbGeometryHandler.cs
+45
-0
Handlers.cs
Dapper.EntityFramework NET45/Handlers.cs
+1
-0
AssemblyInfo.cs
Dapper.EntityFramework NET45/Properties/AssemblyInfo.cs
+0
-1
Dapper.EntityFramework.nuspec
Dapper.EntityFramework.nuspec
+2
-2
AssemblyInfo.cs
Dapper.SqlBuilder/Properties/AssemblyInfo.cs
+2
-2
AssemblyInfo.cs
DapperTests NET35/Properties/AssemblyInfo.cs
+2
-2
AssemblyInfo.cs
DapperTests NET45/Properties/AssemblyInfo.cs
+2
-2
AssemblyInfo.cs
Tests/Properties/AssemblyInfo.cs
+2
-2
Tests.cs
Tests/Tests.cs
+12
-6
dapper.nuspec
dapper.nuspec
+2
-1
No files found.
Dapper NET40/Properties/AssemblyInfo.cs
View file @
62bdcd1b
...
@@ -32,5 +32,5 @@
...
@@ -32,5 +32,5 @@
//
//
// You can specify all the values or you can default the Build and Revision Numbers
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// by using the '*' as shown below:
[
assembly
:
AssemblyVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyVersion
(
"1.3
3
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
3
.0.0"
)]
Dapper NET40/SqlMapper.cs
View file @
62bdcd1b
...
@@ -839,10 +839,13 @@ internal static DbType LookupDbType(Type type, string name, out ITypeHandler han
...
@@ -839,10 +839,13 @@ internal static DbType LookupDbType(Type type, string name, out ITypeHandler han
{
{
return
DbType
.
Object
;
return
DbType
.
Object
;
}
}
if
(
type
.
FullName
==
"Microsoft.SqlServer.Types.SqlGeography"
)
switch
(
type
.
FullName
)
{
{
handler
=
new
UdtTypeHandler
(
"GEOGRAPHY"
);
case
"Microsoft.SqlServer.Types.SqlGeography"
:
AddTypeHandler
(
type
,
handler
);
AddTypeHandler
(
type
,
handler
=
new
UdtTypeHandler
(
"GEOGRAPHY"
));
return
DbType
.
Object
;
case
"Microsoft.SqlServer.Types.SqlGeometry"
:
AddTypeHandler
(
type
,
handler
=
new
UdtTypeHandler
(
"GEOMETRY"
));
return
DbType
.
Object
;
return
DbType
.
Object
;
}
}
throw
new
NotSupportedException
(
string
.
Format
(
"The member {0} of type {1} cannot be used as a parameter value"
,
name
,
type
));
throw
new
NotSupportedException
(
string
.
Format
(
"The member {0} of type {1} cannot be used as a parameter value"
,
name
,
type
));
...
...
Dapper.Contrib.Tests/Properties/AssemblyInfo.cs
View file @
62bdcd1b
...
@@ -31,5 +31,5 @@
...
@@ -31,5 +31,5 @@
//
//
// You can specify all the values or you can default the Build and Revision Numbers
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// by using the '*' as shown below:
[
assembly
:
AssemblyVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyVersion
(
"1.3
3
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
3
.0.0"
)]
Dapper.Contrib/Properties/AssemblyInfo.cs
View file @
62bdcd1b
...
@@ -31,5 +31,5 @@
...
@@ -31,5 +31,5 @@
//
//
// You can specify all the values or you can default the Build and Revision Numbers
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// by using the '*' as shown below:
[
assembly
:
AssemblyVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyVersion
(
"1.3
3
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
3
.0.0"
)]
Dapper.EntityFramework NET40/Dapper.EntityFramework NET40.csproj
View file @
62bdcd1b
...
@@ -57,10 +57,15 @@
...
@@ -57,10 +57,15 @@
<Compile
Include=
"..\Dapper.EntityFramework NET45\DbGeographyHandler.cs"
>
<Compile
Include=
"..\Dapper.EntityFramework NET45\DbGeographyHandler.cs"
>
<Link>
DbGeographyHandler.cs
</Link>
<Link>
DbGeographyHandler.cs
</Link>
</Compile>
</Compile>
<Compile
Include=
"..\Dapper.EntityFramework NET45\DbGeometryHandler.cs"
>
<Link>
DbGeometryHandler.cs
</Link>
</Compile>
<Compile
Include=
"..\Dapper.EntityFramework NET45\Handlers.cs"
>
<Compile
Include=
"..\Dapper.EntityFramework NET45\Handlers.cs"
>
<Link>
Handlers.cs
</Link>
<Link>
Handlers.cs
</Link>
</Compile>
</Compile>
<Compile
Include=
"Properties\AssemblyInfo.cs"
/>
<Compile
Include=
"..\Dapper.EntityFramework NET45\Properties\AssemblyInfo.cs"
>
<Link>
AssemblyInfo.cs
</Link>
</Compile>
<Compile
Include=
"SqlServerTypes\Loader.cs"
/>
<Compile
Include=
"SqlServerTypes\Loader.cs"
/>
</ItemGroup>
</ItemGroup>
<ItemGroup>
<ItemGroup>
...
@@ -92,6 +97,9 @@
...
@@ -92,6 +97,9 @@
<Name>
Dapper NET40
</Name>
<Name>
Dapper NET40
</Name>
</ProjectReference>
</ProjectReference>
</ItemGroup>
</ItemGroup>
<ItemGroup>
<Folder
Include=
"Properties\"
/>
</ItemGroup>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.CSharp.targets"
/>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.CSharp.targets"
/>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Other similar extension points exist, see Microsoft.Common.targets.
...
...
Dapper.EntityFramework NET40/Properties/AssemblyInfo.cs
deleted
100644 → 0
View file @
54bc52b3
using
System.Reflection
;
using
System.Runtime.CompilerServices
;
using
System.Runtime.InteropServices
;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[
assembly
:
AssemblyTitle
(
"Dapper.EntityFramework NET40"
)]
[
assembly
:
AssemblyDescription
(
""
)]
[
assembly
:
AssemblyConfiguration
(
""
)]
[
assembly
:
AssemblyCompany
(
""
)]
[
assembly
:
AssemblyProduct
(
"Dapper.EntityFramework NET40"
)]
[
assembly
:
AssemblyCopyright
(
"Copyright © 2014"
)]
[
assembly
:
AssemblyTrademark
(
""
)]
[
assembly
:
AssemblyCulture
(
""
)]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[
assembly
:
ComVisible
(
false
)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[
assembly
:
Guid
(
"85331b38-d6e0-41f6-b1ed-b27a8747f827"
)]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[
assembly
:
AssemblyVersion
(
"1.0.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.0.0.0"
)]
Dapper.EntityFramework NET45/Dapper.EntityFramework NET45.csproj
View file @
62bdcd1b
...
@@ -52,6 +52,7 @@
...
@@ -52,6 +52,7 @@
<Reference
Include=
"System.Xml"
/>
<Reference
Include=
"System.Xml"
/>
</ItemGroup>
</ItemGroup>
<ItemGroup>
<ItemGroup>
<Compile
Include=
"DbGeometryHandler.cs"
/>
<Compile
Include=
"DbGeographyHandler.cs"
/>
<Compile
Include=
"DbGeographyHandler.cs"
/>
<Compile
Include=
"Properties\AssemblyInfo.cs"
/>
<Compile
Include=
"Properties\AssemblyInfo.cs"
/>
<Compile
Include=
"Handlers.cs"
/>
<Compile
Include=
"Handlers.cs"
/>
...
...
Dapper.EntityFramework NET45/DbGeometryHandler.cs
0 → 100644
View file @
62bdcd1b
using
Microsoft.SqlServer.Types
;
using
System
;
using
System.Data
;
using
System.Data.Entity.Spatial
;
using
System.Data.SqlClient
;
namespace
Dapper.EntityFramework
{
/// <summary>
/// Type-handler for the DbGeometry spatial type
/// </summary>
public
class
DbGeometryHandler
:
Dapper
.
SqlMapper
.
TypeHandler
<
DbGeometry
>
{
/// <summary>
/// Create a new handler instance
/// </summary>
protected
DbGeometryHandler
()
{
}
/// <summary>
/// Default handler instance
/// </summary>
public
static
readonly
DbGeometryHandler
Default
=
new
DbGeometryHandler
();
/// <summary>
/// Assign the value of a parameter before a command executes
/// </summary>
/// <param name="parameter">The parameter to configure</param>
/// <param name="value">Parameter value</param>
public
override
void
SetValue
(
IDbDataParameter
parameter
,
DbGeometry
value
)
{
parameter
.
Value
=
value
==
null
?
(
object
)
DBNull
.
Value
:
(
object
)
SqlGeometry
.
Parse
(
value
.
AsText
());
if
(
parameter
is
SqlParameter
)
{
((
SqlParameter
)
parameter
).
UdtTypeName
=
"GEOMETRY"
;
}
}
/// <summary>
/// Parse a database value back to a typed value
/// </summary>
/// <param name="value">The value from the database</param>
/// <returns>The typed value</returns>
public
override
DbGeometry
Parse
(
object
value
)
{
return
(
value
==
null
||
value
is
DBNull
)
?
null
:
DbGeometry
.
FromText
(
value
.
ToString
());
}
}
}
Dapper.EntityFramework NET45/Handlers.cs
View file @
62bdcd1b
...
@@ -11,6 +11,7 @@ public static class Handlers
...
@@ -11,6 +11,7 @@ public static class Handlers
public
static
void
Register
()
public
static
void
Register
()
{
{
SqlMapper
.
AddTypeHandler
(
DbGeographyHandler
.
Default
);
SqlMapper
.
AddTypeHandler
(
DbGeographyHandler
.
Default
);
SqlMapper
.
AddTypeHandler
(
DbGeometryHandler
.
Default
);
}
}
}
}
}
}
Dapper.EntityFramework NET45/Properties/AssemblyInfo.cs
View file @
62bdcd1b
...
@@ -31,6 +31,5 @@
...
@@ -31,6 +31,5 @@
//
//
// You can specify all the values or you can default the Build and Revision Numbers
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[
assembly
:
AssemblyVersion
(
"1.0.0.0"
)]
[
assembly
:
AssemblyVersion
(
"1.0.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.0.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.0.0.0"
)]
Dapper.EntityFramework.nuspec
View file @
62bdcd1b
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<package
xmlns=
"http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"
>
<package
xmlns=
"http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"
>
<metadata
schemaVersion=
"2"
>
<metadata
schemaVersion=
"2"
>
<id>
Dapper.EntityFramework
</id>
<id>
Dapper.EntityFramework
</id>
<version>
1.
26
</version>
<version>
1.
33
</version>
<title>
Dapper entity framework type handlers
</title>
<title>
Dapper entity framework type handlers
</title>
<authors>
Marc Gravell
</authors>
<authors>
Marc Gravell
</authors>
<owners>
Marc Gravell
</owners>
<owners>
Marc Gravell
</owners>
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
<tags>
orm sql micro-orm
</tags>
<tags>
orm sql micro-orm
</tags>
<dependencies>
<dependencies>
<dependency
id=
"EntityFramework"
version=
"6.1.1"
/>
<dependency
id=
"EntityFramework"
version=
"6.1.1"
/>
<dependency
id=
"Dapper"
version=
"1.
26
"
/>
<dependency
id=
"Dapper"
version=
"1.
33
"
/>
</dependencies>
</dependencies>
<frameworkAssemblies>
<frameworkAssemblies>
<frameworkAssembly
assemblyName=
"System.Core"
/>
<frameworkAssembly
assemblyName=
"System.Core"
/>
...
...
Dapper.SqlBuilder/Properties/AssemblyInfo.cs
View file @
62bdcd1b
...
@@ -31,5 +31,5 @@
...
@@ -31,5 +31,5 @@
//
//
// You can specify all the values or you can default the Build and Revision Numbers
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// by using the '*' as shown below:
[
assembly
:
AssemblyVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyVersion
(
"1.3
3
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
3
.0.0"
)]
DapperTests NET35/Properties/AssemblyInfo.cs
View file @
62bdcd1b
...
@@ -31,5 +31,5 @@
...
@@ -31,5 +31,5 @@
//
//
// You can specify all the values or you can default the Build and Revision Numbers
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// by using the '*' as shown below:
[
assembly
:
AssemblyVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyVersion
(
"1.3
3
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
3
.0.0"
)]
DapperTests NET45/Properties/AssemblyInfo.cs
View file @
62bdcd1b
...
@@ -31,5 +31,5 @@
...
@@ -31,5 +31,5 @@
//
//
// You can specify all the values or you can default the Build and Revision Numbers
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// by using the '*' as shown below:
[
assembly
:
AssemblyVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyVersion
(
"1.3
3
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
3
.0.0"
)]
Tests/Properties/AssemblyInfo.cs
View file @
62bdcd1b
...
@@ -31,5 +31,5 @@
...
@@ -31,5 +31,5 @@
//
//
// You can specify all the values or you can default the Build and Revision Numbers
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// by using the '*' as shown below:
[
assembly
:
AssemblyVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyVersion
(
"1.3
3
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
2
.0.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.3
3
.0.0"
)]
Tests/Tests.cs
View file @
62bdcd1b
...
@@ -2986,45 +2986,51 @@ class HazGeo
...
@@ -2986,45 +2986,51 @@ class HazGeo
{
{
public
int
Id
{
get
;
set
;
}
public
int
Id
{
get
;
set
;
}
public
DbGeography
Geo
{
get
;
set
;
}
public
DbGeography
Geo
{
get
;
set
;
}
public
DbGeometry
Geometry
{
get
;
set
;
}
}
}
class
HazSqlGeo
class
HazSqlGeo
{
{
public
int
Id
{
get
;
set
;
}
public
int
Id
{
get
;
set
;
}
public
SqlGeography
Geo
{
get
;
set
;
}
public
SqlGeography
Geo
{
get
;
set
;
}
public
SqlGeometry
Geometry
{
get
;
set
;
}
}
}
public
void
DBGeography_SO24405645_SO24402424
()
public
void
DBGeography_SO24405645_SO24402424
()
{
{
Dapper
.
EntityFramework
.
Handlers
.
Register
();
Dapper
.
EntityFramework
.
Handlers
.
Register
();
connection
.
Execute
(
"create table #Geo (id int, geo geography)"
);
connection
.
Execute
(
"create table #Geo (id int, geo geography
, geometry geometry
)"
);
var
obj
=
new
HazGeo
var
obj
=
new
HazGeo
{
{
Id
=
1
,
Id
=
1
,
Geo
=
DbGeography
.
LineFromText
(
"LINESTRING(-122.360 47.656, -122.343 47.656 )"
,
4326
)
Geo
=
DbGeography
.
LineFromText
(
"LINESTRING(-122.360 47.656, -122.343 47.656 )"
,
4326
),
Geometry
=
DbGeometry
.
LineFromText
(
"LINESTRING (100 100, 20 180, 180 180)"
,
0
)
};
};
connection
.
Execute
(
"insert #Geo(id, geo
) values (@Id, @Geo
)"
,
obj
);
connection
.
Execute
(
"insert #Geo(id, geo
, geometry) values (@Id, @Geo, @Geometry
)"
,
obj
);
var
row
=
connection
.
Query
<
HazGeo
>(
"select * from #Geo where id=1"
).
SingleOrDefault
();
var
row
=
connection
.
Query
<
HazGeo
>(
"select * from #Geo where id=1"
).
SingleOrDefault
();
row
.
IsNotNull
();
row
.
IsNotNull
();
row
.
Id
.
IsEqualTo
(
1
);
row
.
Id
.
IsEqualTo
(
1
);
row
.
Geo
.
IsNotNull
();
row
.
Geo
.
IsNotNull
();
row
.
Geometry
.
IsNotNull
();
}
}
public
void
SqlGeography_SO25538154
()
public
void
SqlGeography_SO25538154
()
{
{
Dapper
.
SqlMapper
.
ResetTypeHandlers
();
Dapper
.
SqlMapper
.
ResetTypeHandlers
();
connection
.
Execute
(
"create table #SqlGeo (id int, geo geography)"
);
connection
.
Execute
(
"create table #SqlGeo (id int, geo geography
, geometry geometry
)"
);
var
obj
=
new
HazSqlGeo
var
obj
=
new
HazSqlGeo
{
{
Id
=
1
,
Id
=
1
,
Geo
=
SqlGeography
.
STLineFromText
(
new
SqlChars
(
new
SqlString
(
"LINESTRING(-122.360 47.656, -122.343 47.656 )"
)),
4326
)
Geo
=
SqlGeography
.
STLineFromText
(
new
SqlChars
(
new
SqlString
(
"LINESTRING(-122.360 47.656, -122.343 47.656 )"
)),
4326
),
Geometry
=
SqlGeometry
.
STLineFromText
(
new
SqlChars
(
new
SqlString
(
"LINESTRING (100 100, 20 180, 180 180)"
)),
0
)
};
};
connection
.
Execute
(
"insert #SqlGeo(id, geo
) values (@Id, @Geo
)"
,
obj
);
connection
.
Execute
(
"insert #SqlGeo(id, geo
, geometry) values (@Id, @Geo, @Geometry
)"
,
obj
);
var
row
=
connection
.
Query
<
HazSqlGeo
>(
"select * from #SqlGeo where id=1"
).
SingleOrDefault
();
var
row
=
connection
.
Query
<
HazSqlGeo
>(
"select * from #SqlGeo where id=1"
).
SingleOrDefault
();
row
.
IsNotNull
();
row
.
IsNotNull
();
row
.
Id
.
IsEqualTo
(
1
);
row
.
Id
.
IsEqualTo
(
1
);
row
.
Geo
.
IsNotNull
();
row
.
Geo
.
IsNotNull
();
row
.
Geometry
.
IsNotNull
();
}
}
public
void
TypeBasedViaDynamic
()
public
void
TypeBasedViaDynamic
()
...
...
dapper.nuspec
View file @
62bdcd1b
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<package
xmlns=
"http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"
>
<package
xmlns=
"http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"
>
<metadata
schemaVersion=
"2"
>
<metadata
schemaVersion=
"2"
>
<id>
Dapper
</id>
<id>
Dapper
</id>
<version>
1.3
2
</version>
<version>
1.3
3
</version>
<title>
Dapper dot net
</title>
<title>
Dapper dot net
</title>
<authors>
Sam Saffron,Marc Gravell
</authors>
<authors>
Sam Saffron,Marc Gravell
</authors>
<owners>
Sam Saffron,Marc Gravell
</owners>
<owners>
Sam Saffron,Marc Gravell
</owners>
...
@@ -19,6 +19,7 @@
...
@@ -19,6 +19,7 @@
<frameworkAssembly
assemblyName=
"Microsoft.CSharp"
targetFramework=
".NETFramework4.0-Client, .NETFramework4.0"
/>
<frameworkAssembly
assemblyName=
"Microsoft.CSharp"
targetFramework=
".NETFramework4.0-Client, .NETFramework4.0"
/>
</frameworkAssemblies>
</frameworkAssemblies>
<releaseNotes>
<releaseNotes>
* 1.33 - Support for SqlGeometry (core) and DbGeometry (EF)
* 1.32 - Support for SqlGeography in core library
* 1.32 - Support for SqlGeography in core library
* 1.31 - Fix issue with error message when there is a column/type mismatch
* 1.31 - Fix issue with error message when there is a column/type mismatch
* 1.30 - Better async cancellation
* 1.30 - Better async cancellation
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment