|
2 | 2 | using System.ComponentModel.DataAnnotations.Schema;
|
3 | 3 | using System.Linq;
|
4 | 4 | using System.Text.Json;
|
| 5 | +using System.Text.Json.Serialization; |
5 | 6 | using Microsoft.EntityFrameworkCore;
|
6 | 7 | using Microsoft.EntityFrameworkCore.TestUtilities;
|
7 | 8 | using Npgsql.EntityFrameworkCore.PostgreSQL.TestUtilities;
|
@@ -70,7 +71,7 @@ public void Literal()
|
70 | 71 | AssertSql(
|
71 | 72 | @"SELECT j.""Id"", j.""Customer"", j.""ToplevelArray""
|
72 | 73 | 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}'"); |
74 | 75 | }
|
75 | 76 |
|
76 | 77 | [Fact]
|
@@ -163,7 +164,7 @@ public void Bool_output()
|
163 | 164 | AssertSql(
|
164 | 165 | @"SELECT j.""Id"", j.""Customer"", j.""ToplevelArray""
|
165 | 166 | FROM ""JsonbEntities"" AS j
|
166 |
| -WHERE CAST(j.""Customer""->>'IsVip' AS boolean) |
| 167 | +WHERE CAST(j.""Customer""->>'is_vip' AS boolean) |
167 | 168 | LIMIT 2");
|
168 | 169 | }
|
169 | 170 |
|
@@ -639,6 +640,7 @@ public class Customer
|
639 | 640 | public string Name { get; set; }
|
640 | 641 | public int Age { get; set; }
|
641 | 642 | public Guid ID { get; set; }
|
| 643 | + [JsonPropertyName("is_vip")] |
642 | 644 | public bool IsVip { get; set; }
|
643 | 645 | public Statistics Statistics { get; set; }
|
644 | 646 | public Order[] Orders { get; set; }
|
|
0 commit comments