-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathCosmosSerializationUtilities.cs
More file actions
96 lines (85 loc) · 4.13 KB
/
CosmosSerializationUtilities.cs
File metadata and controls
96 lines (85 loc) · 4.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections;
using Microsoft.EntityFrameworkCore.Cosmos.Storage.Internal;
using Microsoft.EntityFrameworkCore.Update.Internal;
using Newtonsoft.Json.Linq;
namespace Microsoft.EntityFrameworkCore.Cosmos.Query.Internal;
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
public static class CosmosSerializationUtilities
{
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
public static readonly MethodInfo SerializeObjectToComplexPropertyMethod
= typeof(CosmosSerializationUtilities).GetMethod(nameof(SerializeObjectToComplexProperty)) ?? throw new UnreachableException();
/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
public static JToken SerializeObjectToComplexProperty(IComplexType type, object? value, bool collection) // #34567
{
if (value == null)
{
return JValue.CreateNull();
}
if (collection)
{
var array = new JArray();
foreach (var element in (IEnumerable)value)
{
array.Add(SerializeObjectToComplexProperty(type, element, false));
}
return array;
}
var obj = new JObject();
foreach (var property in type.GetProperties())
{
var jsonPropertyName = property.GetJsonPropertyName();
var propertyValue = property.GetGetter().GetClrValue(value);
#pragma warning disable EF1001 // Internal EF Core API usage.
var providerValue = property.ConvertToProviderValue(propertyValue);
#pragma warning restore EF1001 // Internal EF Core API usage.
if (providerValue is null)
{
if (!property.IsNullable)
{
throw new InvalidOperationException(CoreStrings.PropertyConceptualNull(property.Name, type.DisplayName()));
}
obj[jsonPropertyName] = null;
}
else
{
obj[jsonPropertyName] = JToken.FromObject(providerValue, CosmosClientWrapper.Serializer);
}
}
foreach (var complexProperty in type.GetComplexProperties())
{
var jsonPropertyName = complexProperty.Name;
var propertyValue = complexProperty.GetGetter().GetClrValue(value);
if (propertyValue is null)
{
if (!complexProperty.IsNullable)
{
throw new InvalidOperationException(CoreStrings.PropertyConceptualNull(complexProperty.Name, type.DisplayName()));
}
obj[jsonPropertyName] = null;
}
else
{
obj[jsonPropertyName] = SerializeObjectToComplexProperty(complexProperty.ComplexType, propertyValue, complexProperty.IsCollection);
}
}
return obj;
}
}