|
7 | 7 | using System.Collections;
|
8 | 8 | using System.Collections.Generic;
|
9 | 9 | using System.Data.Common;
|
| 10 | +using System.Linq; |
10 | 11 | using System.Text;
|
11 | 12 | using System.Threading;
|
12 | 13 |
|
@@ -65,12 +66,22 @@ public override object AddslashesProcessParam(object param, Type mapType, Column
|
65 | 66 | {
|
66 | 67 | var pgdics = isdic ? param as Dictionary<string, string> :
|
67 | 68 | param as IEnumerable<KeyValuePair<string, string>>;
|
68 |
| - if (pgdics == null) return string.Concat("''::hstore"); |
69 |
| - var pghstore = new StringBuilder(); |
70 |
| - pghstore.Append("'"); |
71 |
| - foreach (var dic in pgdics) |
72 |
| - pghstore.Append("\"").Append(dic.Key.Replace("'", "''")).Append("\"=>") |
73 |
| - .Append(dic.Key.Replace("'", "''")).Append(","); |
| 69 | + |
| 70 | + var pghstore = new StringBuilder("'"); |
| 71 | + var pairs = pgdics.ToArray(); |
| 72 | + |
| 73 | + for (var i = 0; i < pairs.Length; i++) |
| 74 | + { |
| 75 | + if (i != 0) pghstore.Append(","); |
| 76 | + |
| 77 | + pghstore.AppendFormat("\"{0}\"=>", pairs[i].Key.Replace("'", "''")); |
| 78 | + |
| 79 | + if (pairs[i].Value == null) |
| 80 | + pghstore.Append("NULL"); |
| 81 | + else |
| 82 | + pghstore.AppendFormat("\"{0}\"", pairs[i].Value.Replace("'", "''")); |
| 83 | + } |
| 84 | + |
74 | 85 | return pghstore.Append("'::hstore");
|
75 | 86 | }
|
76 | 87 | else if (param is IEnumerable)
|
|
0 commit comments