You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Readme.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Dapper - a simple object mapper for .Net
4
4
5
5
Release Notes
6
6
-------------
7
-
Located at [stackexchange.github.io/Dapper](https://stackexchange.github.io/Dapper/)
7
+
Located at [dapperlib.github.io/Dapper](https://dapperlib.github.io/Dapper/)
8
8
9
9
Packages
10
10
--------
@@ -114,7 +114,7 @@ Performance
114
114
115
115
A key feature of Dapper is performance. The following metrics show how long it takes to execute a `SELECT` statement against a DB (in various config, each labeled) and map the data returned to objects.
116
116
117
-
The benchmarks can be found in [Dapper.Tests.Performance](https://github.com/StackExchange/Dapper/tree/main/benchmarks/Dapper.Tests.Performance) (contributions welcome!) and can be run via:
117
+
The benchmarks can be found in [Dapper.Tests.Performance](https://github.com/DapperLib/Dapper/tree/main/benchmarks/Dapper.Tests.Performance) (contributions welcome!) and can be run via:
Copy file name to clipboardExpand all lines: docs/index.md
+17-17Lines changed: 17 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## Overview
4
4
5
-
A brief guide is available [on github](https://github.com/StackExchange/Dapper/blob/main/Readme.md)
5
+
A brief guide is available [on github](https://github.com/DapperLib/Dapper/blob/main/Readme.md)
6
6
7
7
Questions on Stack Overflow should be tagged [`dapper`](https://stackoverflow.com/questions/tagged/dapper)
8
8
@@ -67,14 +67,14 @@ Other changes merged:
67
67
68
68
### 1.60.1
69
69
70
-
- Fix [#1196](https://github.com/StackExchange/Dapper/issues/1196) - versioning fix only ([#1198](https://github.com/StackExchange/Dapper/pull/1198)) - assembly version is now locked at 1.60.0 to resolve some mismatch issues with .NET Core assembly loading/binding.
70
+
- Fix [#1196](https://github.com/DapperLib/Dapper/issues/1196) - versioning fix only ([#1198](https://github.com/DapperLib/Dapper/pull/1198)) - assembly version is now locked at 1.60.0 to resolve some mismatch issues with .NET Core assembly loading/binding.
71
71
72
72
### 1.50.7
73
73
74
-
- Fix [#1190](https://github.com/StackExchange/Dapper/issues/1190) - incorrect unmanaged pointer when processing parameters that are a boxed struct (rare error relating to GC)
75
-
- Fix [#1111](https://github.com/StackExchange/Dapper/issues/1111) - make `SqlMapper.Parse` consistent with `QueryImpl`
74
+
- Fix [#1190](https://github.com/DapperLib/Dapper/issues/1190) - incorrect unmanaged pointer when processing parameters that are a boxed struct (rare error relating to GC)
75
+
- Fix [#1111](https://github.com/DapperLib/Dapper/issues/1111) - make `SqlMapper.Parse` consistent with `QueryImpl`
- Fix [#1149](https://github.com/StackExchange/Dapper/pull/1149) - improve error messages in "contrib"
77
+
- Fix [#1149](https://github.com/DapperLib/Dapper/pull/1149) - improve error messages in "contrib"
78
78
- Improved detection of empty table-valued-parameters
79
79
80
80
### 1.50.5
@@ -91,7 +91,7 @@ Other changes merged:
91
91
92
92
### 1.50.2
93
93
94
-
- Fix issue [#569](https://github.com/StackExchange/Dapper/issues/569) (`in` expansions using ODBC pseudo-positional arguments)
94
+
- Fix issue [#569](https://github.com/DapperLib/Dapper/issues/569) (`in` expansions using ODBC pseudo-positional arguments)
95
95
96
96
### 1.50.1
97
97
@@ -108,7 +108,7 @@ Other changes merged:
108
108
### 1.50.0-rc2b
109
109
110
110
- New `InListStringSplitCount` global setting; if set (non-negative), `in @foo` expansions (of at least the specified size) of primitive types (`int`, `tinyint`, `smallint`, `bigint`) are implemented via the SQL Server 2016 (compat level 130) `STRING_SPLIT` function
111
-
- Fix for incorrect conversions in `GridReader` ([#254](https://github.com/StackExchange/Dapper/issues/254))
111
+
- Fix for incorrect conversions in `GridReader` ([#254](https://github.com/DapperLib/Dapper/issues/254))
112
112
113
113
### 1.50.0-rc2 / 1.50.0-rc2a
114
114
@@ -117,18 +117,18 @@ Other changes merged:
117
117
### 1.50-beta9
118
118
119
119
- Fix for `PadListExpansions` to work correctly with `not in` scenarios; now uses last non-null value instead of `null`; if none available, don't pad
120
-
- Fix problems with single-result/single-row not being supported by all providers (basically: sqlite, [#466](https://github.com/StackExchange/Dapper/issues/466))
121
-
- Fix problems with enums - nulls ([#467](https://github.com/StackExchange/Dapper/issues/467)) and primitive values ([#468](https://github.com/StackExchange/Dapper/issues/468))
122
-
- Add support for C# 6 get-only properties ([#473](https://github.com/StackExchange/Dapper/issues/473))
123
-
- Add support for various xml types ([#427](https://github.com/StackExchange/Dapper/issues/427))
120
+
- Fix problems with single-result/single-row not being supported by all providers (basically: sqlite, [#466](https://github.com/DapperLib/Dapper/issues/466))
121
+
- Fix problems with enums - nulls ([#467](https://github.com/DapperLib/Dapper/issues/467)) and primitive values ([#468](https://github.com/DapperLib/Dapper/issues/468))
122
+
- Add support for C# 6 get-only properties ([#473](https://github.com/DapperLib/Dapper/issues/473))
123
+
- Add support for various xml types ([#427](https://github.com/DapperLib/Dapper/issues/427))
124
124
125
125
### 1.50-beta8
126
126
127
127
- Addition of `GetRowParser<T>` extension method on `IDataReader` API - allows manual construction of discriminated unions, etc
128
128
- Addition of `Settings.PadListExpansions` - reduces query-plan saturation by padding list expansions with `null` values (opt-in, because on some DB configurations this could change the meaning) *(note: bad choice of `null` revised in 1.50-beta9)*
129
129
- Addition of `Settings.ApplyNullValues` - assigns (rather than ignores) `null` values when possible
130
-
- Fix for [#461](https://github.com/StackExchange/Dapper/issues/461) - ensure type-handlers work for constructor-based initialization
131
-
- Fix for [#455](https://github.com/StackExchange/Dapper/issues/455) - make the `LookupDbType` method available again
130
+
- Fix for [#461](https://github.com/DapperLib/Dapper/issues/461) - ensure type-handlers work for constructor-based initialization
131
+
- Fix for [#455](https://github.com/DapperLib/Dapper/issues/455) - make the `LookupDbType` method available again
132
132
133
133
### 1.50-beta7
134
134
@@ -137,7 +137,7 @@ Other changes merged:
137
137
138
138
### 1.50-beta6
139
139
140
-
- Fix for issue [#424](https://github.com/StackExchange/Dapper/issues/424) - defensive `SqlDataRecord` handling
140
+
- Fix for issue [#424](https://github.com/DapperLib/Dapper/issues/424) - defensive `SqlDataRecord` handling
141
141
142
142
### 1.50-beta5
143
143
@@ -170,7 +170,7 @@ Other changes merged:
170
170
- improve error message if an array is used as a parameter in an invalid context
171
171
- Add `Type[]` support for `GridReader.Read` scenarios (@NikolayGlynchak)
172
172
- Support for custom type-maps in collection parameters (@gjsduarte)
173
-
- Fix incorrect cast in `QueryAsync<T>` (@phnx47, [#346](https://github.com/StackExchange/Dapper/issues/346))
173
+
- Fix incorrect cast in `QueryAsync<T>` (@phnx47, [#346](https://github.com/DapperLib/Dapper/issues/346))
174
174
- Fix incorrect null handling re `UdtTypeName` (@perliedman)
175
175
- Support for `SqlDataRecord` (@sqmgh)
176
176
- Allow `DbString` default for `IsAnsi` to be specified (@kppullin)
@@ -221,11 +221,11 @@ Other changes merged:
221
221
222
222
### 1.36
223
223
224
-
- Fix Issue [#192](https://github.com/StackExchange/Dapper/issues/192) (expanded parameter naming glitch) and Issue [#178](https://github.com/StackExchange/Dapper/issues/178) (execute reader now wraps the command/reader pair, to extend the command lifetime; note that the underlying command/reader are available by casting to `IWrappedDataReader`)
224
+
- Fix Issue [#192](https://github.com/DapperLib/Dapper/issues/192) (expanded parameter naming glitch) and Issue [#178](https://github.com/DapperLib/Dapper/issues/178) (execute reader now wraps the command/reader pair, to extend the command lifetime; note that the underlying command/reader are available by casting to `IWrappedDataReader`)
225
225
226
226
### 1.35
227
227
228
-
- Fix Issue [#151](https://github.com/StackExchange/Dapper/issues/151) (Execute should work with `ExpandoObject` etc); Fix Issue #182 (better support for db-type when using `object` values);
228
+
- Fix Issue [#151](https://github.com/DapperLib/Dapper/issues/151) (Execute should work with `ExpandoObject` etc); Fix Issue #182 (better support for db-type when using `object` values);
229
229
- Output expressions / callbacks in dynamic args (via Derek); arbitrary number of types in multi-mapping (via James Holwell);
230
230
- Fix `DbString`/Oracle bug (via Mauro Cerutti); new support for **named positional arguments**
0 commit comments