Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 11d1dc1

Browse files
committedJun 17, 2020
Respect [JsonPropertyName] in query translation
Closes npgsql#1419
1 parent eda8129 commit 11d1dc1

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed
 

‎src/EFCore.PG/Query/ExpressionTranslators/Internal/NpgsqlJsonPocoTranslator.cs

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
using System;
22
using System.Linq;
33
using System.Reflection;
4+
using System.Text.Json.Serialization;
45
using JetBrains.Annotations;
56
using Microsoft.EntityFrameworkCore.Query;
67
using Microsoft.EntityFrameworkCore.Query.SqlExpressions;
@@ -28,7 +29,16 @@ public NpgsqlJsonPocoTranslator(
2829
}
2930

3031
public virtual SqlExpression Translate(SqlExpression instance, MemberInfo member, Type returnType)
31-
=> TranslateMemberAccess(instance, _sqlExpressionFactory.Constant(member.Name), returnType);
32+
=> instance?.TypeMapping is NpgsqlJsonTypeMapping || instance is PostgresJsonTraversalExpression
33+
? TranslateMemberAccess(
34+
instance,
35+
_sqlExpressionFactory.Constant(
36+
member.GetCustomAttribute<JsonPropertyNameAttribute>() is JsonPropertyNameAttribute
37+
attribute
38+
? attribute.Name
39+
: member.Name),
40+
returnType)
41+
: null;
3242

3343
public virtual SqlExpression TranslateMemberAccess(
3444
[NotNull] SqlExpression instance, [NotNull] SqlExpression member, [NotNull] Type returnType)

‎test/EFCore.PG.FunctionalTests/Query/JsonPocoQueryTest.cs

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using System.ComponentModel.DataAnnotations.Schema;
33
using System.Linq;
44
using System.Text.Json;
5+
using System.Text.Json.Serialization;
56
using Microsoft.EntityFrameworkCore;
67
using Microsoft.EntityFrameworkCore.TestUtilities;
78
using Npgsql.EntityFrameworkCore.PostgreSQL.TestUtilities;
@@ -70,7 +71,7 @@ public void Literal()
7071
AssertSql(
7172
@"SELECT j.""Id"", j.""Customer"", j.""ToplevelArray""
7273
FROM ""JsonbEntities"" AS j
73-
WHERE j.""Customer"" = '{""Name"":""Test customer"",""Age"":80,""ID"":""00000000-0000-0000-0000-000000000000"",""IsVip"":false,""Statistics"":null,""Orders"":null}'");
74+
WHERE j.""Customer"" = '{""Name"":""Test customer"",""Age"":80,""ID"":""00000000-0000-0000-0000-000000000000"",""is_vip"":false,""Statistics"":null,""Orders"":null}'");
7475
}
7576

7677
[Fact]
@@ -163,7 +164,7 @@ public void Bool_output()
163164
AssertSql(
164165
@"SELECT j.""Id"", j.""Customer"", j.""ToplevelArray""
165166
FROM ""JsonbEntities"" AS j
166-
WHERE CAST(j.""Customer""->>'IsVip' AS boolean)
167+
WHERE CAST(j.""Customer""->>'is_vip' AS boolean)
167168
LIMIT 2");
168169
}
169170

@@ -639,6 +640,7 @@ public class Customer
639640
public string Name { get; set; }
640641
public int Age { get; set; }
641642
public Guid ID { get; set; }
643+
[JsonPropertyName("is_vip")]
642644
public bool IsVip { get; set; }
643645
public Statistics Statistics { get; set; }
644646
public Order[] Orders { get; set; }

0 commit comments

Comments
 (0)
Please sign in to comment.