Skip to content

Commit ded2883

Browse files
committed
修复 pgsql 中 hstore 中 value 错误赋值为 key 的问题,并允许 value 值为 NULL。
1 parent db701f0 commit ded2883

File tree

2 files changed

+22
-7
lines changed

2 files changed

+22
-7
lines changed

.gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -244,4 +244,8 @@ ModelManifest.xml
244244
.paket/paket.exe
245245

246246
# FAKE - F# Make
247-
.fake/
247+
.fake/
248+
249+
# JetBrains Rider
250+
.idea/
251+
*.sln.iml

Providers/FreeSql.Provider.PostgreSQL/PostgreSQLAdo/PostgreSQLAdo.cs

+17-6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using System.Collections;
88
using System.Collections.Generic;
99
using System.Data.Common;
10+
using System.Linq;
1011
using System.Text;
1112
using System.Threading;
1213

@@ -65,12 +66,22 @@ public override object AddslashesProcessParam(object param, Type mapType, Column
6566
{
6667
var pgdics = isdic ? param as Dictionary<string, string> :
6768
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+
7485
return pghstore.Append("'::hstore");
7586
}
7687
else if (param is IEnumerable)

0 commit comments

Comments
 (0)