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
bdf56330
Commit
bdf56330
authored
May 24, 2013
by
Marc Gravell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Deploy 1.13
Signed-off-by:
Marc Gravell
<
marc.gravell@gmail.com
>
parent
7a5f419c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
14 deletions
+17
-14
SqlMapper.cs
Dapper NET40/SqlMapper.cs
+2
-2
dapper.nuspec
dapper.nuspec
+15
-12
No files found.
Dapper NET40/SqlMapper.cs
View file @
bdf56330
...
...
@@ -1281,7 +1281,7 @@ private static CacheInfo GetCacheInfo(Identity identity)
}
#if !CSHARP30
sealed
partial
class
DapperTable
private
sealed
partial
class
DapperTable
{
string
[]
fieldNames
;
readonly
Dictionary
<
string
,
int
>
fieldNameLookup
;
...
...
@@ -1403,7 +1403,7 @@ public override System.Dynamic.DynamicMetaObject BindSetMember(System.Dynamic.Se
}
}
sealed
partial
class
DapperRow
private
sealed
partial
class
DapperRow
:
System
.
Dynamic
.
IDynamicMetaObjectProvider
,
IDictionary
<
string
,
object
>
{
...
...
dapper.nuspec
View file @
bdf56330
...
...
@@ -2,7 +2,7 @@
<package
xmlns=
"http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"
>
<metadata
schemaVersion=
"2"
>
<id>
Dapper
</id>
<version>
1.1
2.1.1
</version>
<version>
1.1
3
</version>
<title>
Dapper dot net
</title>
<authors>
Sam Saffron,Marc Gravell
</authors>
<owners>
Sam Saffron,Marc Gravell
</owners>
...
...
@@ -19,19 +19,22 @@
<frameworkAssembly
assemblyName=
"Microsoft.CSharp"
targetFramework=
".NETFramework4.0-Client, .NETFramework4.0"
/>
</frameworkAssemblies>
<releaseNotes>
* 1.12.1.1 - Added support for Table Valued Parameters as part of anonymous objects
* 1.13 - Added support for Table Valued Parameters as part of anonymous objects
* - Added support for async
* - Added support for sharing strategies between databases
* - Rewrote dynamic implementation
* 1.12.1 - Minor deploy glitch (should now include intellisense files!)
* 1.12 - Better automatic type-mapping (int vs long, float vs double, etc)
* Fixed: bug with indexer properties
* 1.11 - Custom type-map support
* 1.10 - Fixed: error-handling could lose original exception if reader closed
* 1.9 - Added: better schema change detection
* Fixed: enum support for T in Query-of-T
* Added: dictionary support for parameters
* 1.8 - Started release notes
* Important: Dapper is now shipping as a DLL which will work on .net 3.5 or .net 4.0,
* 1.12
- Better automatic type-mapping (int vs long, float vs double, etc)
*
Fixed: bug with indexer properties
* 1.11
- Custom type-map support
* 1.10
- Fixed: error-handling could lose original exception if reader closed
* 1.9
- Added: better schema change detection
*
Fixed: enum support for T in Query-of-T
*
Added: dictionary support for parameters
* 1.8
- Started release notes
*
Important: Dapper is now shipping as a DLL which will work on .net 3.5 or .net 4.0,
* This improves the debugging experience as you no longer break into dapper when SQL fails.
* Added: ParameterNames on DynamicParameters
*
Added: ParameterNames on DynamicParameters
</releaseNotes>
</metadata>
<files>
...
...
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