- 10 Oct, 2012 2 commits
-
-
-
Marc Gravell authored
Pull request 55 (thanks: haeal), with some tweaks; better handling of shutting down the data-reader on the happy path
-
- 09 Oct, 2012 2 commits
-
-
Marc Gravell authored
-
Marc Gravell authored
-
- 08 Oct, 2012 1 commit
-
-
Marc Gravell authored
Applied partial to all Dapper classes and interfaces in order to improve extensibility
-
- 07 Oct, 2012 1 commit
-
-
Sam authored
Multi-Mapping issue with SplitOn
-
- 06 Oct, 2012 1 commit
-
-
mrange authored
Dapper by source to extend the Dapper classes without making changes to the Dapper source (for instance in order to expand DynamicParameter with a method HasValue<T>(string name)). In addition to further help developers that reference Dapper by source the public property of Dapper classes are moved to separate partial classes. By default the previous behavior is kept but when referencing by source you can now make the Dapper classes internal by defining: DAPPER_MAKE_PRIVATE
-
- 05 Oct, 2012 1 commit
-
-
Dmitriy Yudin authored
There was a small issue when SplinOn spaces between commas, for example: splitOn: "AddressId, Id". For more info see: http://stackoverflow.com/questions/11042618/dapper-multi-mapping-issue I have modified below line of code: From: var currentSplit = splits[splitIndex]; To: var currentSplit = splits[splitIndex].Trim(); Also added a test called: TestMultiMappingWithSplitOnSpaceBetweenCommas()
-
- 04 Oct, 2012 1 commit
-
-
- 03 Oct, 2012 1 commit
-
-
Marc Gravell authored
-
- 21 Sep, 2012 1 commit
-
-
Marc Gravell authored
-
- 19 Sep, 2012 5 commits
-
-
Marc Gravell authored
Ensure that when processing bools we do a "!=0" test; we don't just want to store `7` as a bool - that causes problems sometimes.
-
Marc Gravell authored
-
Marc Gravell authored
Minor deploy glitch (should now include intellisense files!)
-
Marc Gravell authored
Signed-off-by:Marc Gravell <marc.gravell@gmail.com>
-
Marc Gravell authored
Fixed issue with incorrect generated ParamReader when it has indexing properties declared.
-
- 18 Sep, 2012 1 commit
-
-
Anatoly Zhmur authored
-
- 13 Sep, 2012 2 commits
-
-
-
Marc Gravell authored
IL level type-remapping, so i8 / i4 are interchangeable, etc. This avoids issues on databases that return 1 as bigint by default, etc
-
- 09 Sep, 2012 1 commit
-
-
Sam authored
Support of types for Id column in Dapper.Rainbow
-
- 07 Sep, 2012 1 commit
-
-
Roman Gomolko authored
From time to time ID column has types different to int. With this change you could specify column type if it is different to int. Example: public Table<MyDb, Guid> Users { get; set; }
-
- 04 Sep, 2012 4 commits
-
-
Marc Gravell authored
-
Marc Gravell authored
Minor tweaks to custom type-map implementation; principally, lock-less reading and caching the default type-map
-
-
Anatoly Zhmur authored
-
- 14 Aug, 2012 1 commit
-
-
Anatoly Zhmur authored
-
- 07 Aug, 2012 9 commits
-
-
https://github.com/jedidja/dapper-dot-netMarc Gravell authored
Conflicts: Dapper.Rainbow/Database.cs
-
Marc Gravell authored
tweak tests to represent this (and workaround) Added [ActiveTest] to allow trivial debugging individual tests
-
Marc Gravell authored
Replicated a bug 'Dapper MultiMap doesn't work with splitOn with NULL value'
-
Marc Gravell authored
Fix for issue #70 (support for TimeSpan)
-
Marc Gravell authored
Added dynamic query like for CSharp30.
-
https://github.com/vosen/dapper-dot-netMarc Gravell authored
Also optimised ldloc/lodloca/stloc and fixed enum double-assignment Signed-off-by:Marc Gravell <marc.gravell@gmail.com>
-
-
-
Marc Gravell authored
-
- 06 Aug, 2012 1 commit
-
-
Jakub Konecki authored
Fix for issue #70 (http://code.google.com/p/dapper-dot-net/issues/detail?id=70) and also related MS bug with DbType.Time (https://connect.microsoft.com/VisualStudio/feedback/details/381934/sqlparameter-dbtype-dbtype-time-sets-the-parameter-to-sqldbtype-datetime-instead-of-sqldbtype-time).
-
- 15 Jul, 2012 2 commits
-
-
Sam authored
Capitalize "id" to maintain consitency
-
Garrett Wolf authored
-
- 12 Jul, 2012 1 commit
-
-
Joao Silva authored
-
- 02 Jul, 2012 1 commit
-
-
Sam authored
sql_variant support query parameters and SQL Server
-