-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathEntityEntry`.cs
307 lines (274 loc) · 14.7 KB
/
EntityEntry`.cs
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.EntityFrameworkCore.ChangeTracking.Internal;
using Microsoft.EntityFrameworkCore.Internal;
namespace Microsoft.EntityFrameworkCore.ChangeTracking;
/// <summary>
/// Provides access to change tracking information and operations for a given entity.
/// </summary>
/// <remarks>
/// <para>
/// Instances of this class are returned from methods when using the <see cref="ChangeTracker" /> API and it is
/// not designed to be directly constructed in your application code.
/// </para>
/// <para>
/// See <see href="https://aka.ms/efcore-docs-entity-entries">Accessing tracked entities in EF Core</see> for more information and
/// examples.
/// </para>
/// </remarks>
/// <typeparam name="TEntity">The type of entity being tracked by this entry.</typeparam>
public class EntityEntry<TEntity> : EntityEntry
where TEntity : class
{
/// <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>
[EntityFrameworkInternal]
public EntityEntry(InternalEntityEntry internalEntry)
: base(internalEntry)
{
}
/// <summary>
/// Gets the entity being tracked by this entry.
/// </summary>
public new virtual TEntity Entity
=> (TEntity)base.Entity;
/// <summary>
/// Provides access to change tracking information and operations for a given property of this entity.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-entity-entries">Accessing tracked entities in EF Core</see> for more information and
/// examples.
/// </remarks>
/// <param name="propertyExpression">
/// A lambda expression representing the property to access information and operations for.
/// </param>
/// <returns>An object that exposes change tracking information and operations for the given property.</returns>
public virtual PropertyEntry<TEntity, TProperty> Property<TProperty>(
Expression<Func<TEntity, TProperty>> propertyExpression)
{
Check.NotNull(propertyExpression, nameof(propertyExpression));
return new PropertyEntry<TEntity, TProperty>(
InternalEntry,
Metadata.GetProperty(propertyExpression.GetMemberAccess().GetSimpleMemberName()));
}
/// <summary>
/// Provides access to change tracking information and operations for a given complex type property of this entity.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-entity-entries">Accessing tracked entities in EF Core</see> for more information and
/// examples.
/// </remarks>
/// <param name="propertyExpression">
/// A lambda expression representing the property to access information and operations for.
/// </param>
/// <returns>An object that exposes change tracking information and operations for the given property.</returns>
public virtual ComplexPropertyEntry<TEntity, TProperty> ComplexProperty<TProperty>(
Expression<Func<TEntity, TProperty>> propertyExpression)
{
Check.NotNull(propertyExpression, nameof(propertyExpression));
return new ComplexPropertyEntry<TEntity, TProperty>(
InternalEntry,
Metadata.GetComplexProperty(propertyExpression.GetMemberAccess().GetSimpleMemberName()));
}
/// <summary>
/// Provides access to change tracking and loading information for a reference (i.e. non-collection)
/// navigation property that associates this entity to another entity.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-entity-entries">Accessing tracked entities in EF Core</see>
/// and <see href="https://aka.ms/efcore-docs-changing-relationships">Changing foreign keys and navigations</see>
/// for more information and examples.
/// </remarks>
/// <param name="propertyExpression">
/// A lambda expression representing the reference navigation to access information and operations for.
/// </param>
/// <returns>
/// An object that exposes change tracking information and operations for the given navigation property.
/// </returns>
public virtual ReferenceEntry<TEntity, TProperty> Reference<TProperty>(
Expression<Func<TEntity, TProperty?>> propertyExpression)
where TProperty : class
{
Check.NotNull(propertyExpression, nameof(propertyExpression));
return new ReferenceEntry<TEntity, TProperty>(InternalEntry, propertyExpression.GetMemberAccess().GetSimpleMemberName());
}
/// <summary>
/// Provides access to change tracking and loading information for a collection
/// navigation property that associates this entity to a collection of another entities.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-entity-entries">Accessing tracked entities in EF Core</see>
/// and <see href="https://aka.ms/efcore-docs-changing-relationships">Changing foreign keys and navigations</see>
/// for more information and examples.
/// </remarks>
/// <param name="propertyExpression">
/// A lambda expression representing the collection navigation to access information and operations for.
/// </param>
/// <returns>
/// An object that exposes change tracking information and operations for the given navigation property.
/// </returns>
public virtual CollectionEntry<TEntity, TProperty> Collection<TProperty>(
Expression<Func<TEntity, IEnumerable<TProperty>>> propertyExpression)
where TProperty : class
{
Check.NotNull(propertyExpression, nameof(propertyExpression));
return new CollectionEntry<TEntity, TProperty>(InternalEntry, propertyExpression.GetMemberAccess().GetSimpleMemberName());
}
/// <summary>
/// Provides access to change tracking information and operations for a given property of this entity.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-entity-entries">Accessing tracked entities in EF Core</see> for more information and
/// examples.
/// </remarks>
/// <typeparam name="TProperty">The type of the property.</typeparam>
/// <param name="property">The property to access information and operations for.</param>
/// <returns>An object that exposes change tracking information and operations for the given property.</returns>
public virtual PropertyEntry<TEntity, TProperty> Property<TProperty>(IProperty property)
{
Check.NotNull(property, nameof(property));
ValidateType<TProperty>(property);
return new PropertyEntry<TEntity, TProperty>(InternalEntry, property);
}
/// <summary>
/// Provides access to change tracking information and operations for a given complex type property of this entity.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-entity-entries">Accessing tracked entities in EF Core</see> for more information and
/// examples.
/// </remarks>
/// <typeparam name="TProperty">The type of the property.</typeparam>
/// <param name="complexProperty">The property to access information and operations for.</param>
/// <returns>An object that exposes change tracking information and operations for the given property.</returns>
public virtual ComplexPropertyEntry<TEntity, TProperty> ComplexProperty<TProperty>(IComplexProperty complexProperty)
{
Check.NotNull(complexProperty, nameof(complexProperty));
ValidateType<TProperty>(complexProperty);
return new ComplexPropertyEntry<TEntity, TProperty>(InternalEntry, complexProperty);
}
/// <summary>
/// Provides access to change tracking and loading information for a reference (i.e. non-collection)
/// navigation that associates this entity to another entity.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-entity-entries">Accessing tracked entities in EF Core</see>
/// and <see href="https://aka.ms/efcore-docs-changing-relationships">Changing foreign keys and navigations</see>
/// for more information and examples.
/// </remarks>
/// <param name="navigation">The reference navigation.</param>
/// <returns>
/// An object that exposes change tracking information and operations for the given navigation property.
/// </returns>
public virtual ReferenceEntry<TEntity, TProperty> Reference<TProperty>(INavigationBase navigation)
where TProperty : class
{
Check.NotNull(navigation, nameof(navigation));
return new ReferenceEntry<TEntity, TProperty>(InternalEntry, (INavigation)navigation);
}
/// <summary>
/// Provides access to change tracking and loading information for a collection
/// navigation property that associates this entity to a collection of another entities.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-entity-entries">Accessing tracked entities in EF Core</see>
/// and <see href="https://aka.ms/efcore-docs-changing-relationships">Changing foreign keys and navigations</see>
/// for more information and examples.
/// </remarks>
/// <param name="navigation">The collection navigation.</param>
/// <returns>
/// An object that exposes change tracking information and operations for the given navigation property.
/// </returns>
public virtual CollectionEntry<TEntity, TProperty> Collection<TProperty>(INavigationBase navigation)
where TProperty : class
{
Check.NotNull(navigation, nameof(navigation));
return new CollectionEntry<TEntity, TProperty>(InternalEntry, navigation);
}
/// <summary>
/// Provides access to change tracking and loading information for a reference (i.e. non-collection)
/// navigation that associates this entity to another entity.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-entity-entries">Accessing tracked entities in EF Core</see>
/// and <see href="https://aka.ms/efcore-docs-changing-relationships">Changing foreign keys and navigations</see>
/// for more information and examples.
/// </remarks>
/// <param name="propertyName">The name of the navigation property.</param>
/// <returns>
/// An object that exposes change tracking information and operations for the given navigation property.
/// </returns>
public virtual ReferenceEntry<TEntity, TProperty> Reference<TProperty>(string propertyName)
where TProperty : class
{
Check.NotEmpty(propertyName, nameof(propertyName));
return new ReferenceEntry<TEntity, TProperty>(InternalEntry, propertyName);
}
/// <summary>
/// Provides access to change tracking and loading information for a collection
/// navigation property that associates this entity to a collection of another entities.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-entity-entries">Accessing tracked entities in EF Core</see>
/// and <see href="https://aka.ms/efcore-docs-changing-relationships">Changing foreign keys and navigations</see>
/// for more information and examples.
/// </remarks>
/// <param name="propertyName">The name of the navigation property.</param>
/// <returns>
/// An object that exposes change tracking information and operations for the given navigation property.
/// </returns>
public virtual CollectionEntry<TEntity, TProperty> Collection<TProperty>(string propertyName)
where TProperty : class
{
Check.NotEmpty(propertyName, nameof(propertyName));
return new CollectionEntry<TEntity, TProperty>(InternalEntry, propertyName);
}
/// <summary>
/// Provides access to change tracking information and operations for a given property of this entity.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-entity-entries">Accessing tracked entities in EF Core</see> for more information and
/// examples.
/// </remarks>
/// <typeparam name="TProperty">The type of the property.</typeparam>
/// <param name="propertyName">The property to access information and operations for.</param>
/// <returns>An object that exposes change tracking information and operations for the given property.</returns>
public virtual PropertyEntry<TEntity, TProperty> Property<TProperty>(string propertyName)
{
Check.NotEmpty(propertyName, nameof(propertyName));
ValidateType<TProperty>(InternalEntry.EntityType.FindProperty(propertyName));
return new PropertyEntry<TEntity, TProperty>(InternalEntry, Metadata.GetProperty(propertyName));
}
/// <summary>
/// Provides access to change tracking information and operations for a given complex type property of this entity.
/// </summary>
/// <remarks>
/// See <see href="https://aka.ms/efcore-docs-entity-entries">Accessing tracked entities in EF Core</see> for more information and
/// examples.
/// </remarks>
/// <typeparam name="TProperty">The type of the property.</typeparam>
/// <param name="propertyName">The property to access information and operations for.</param>
/// <returns>An object that exposes change tracking information and operations for the given property.</returns>
public virtual ComplexPropertyEntry<TEntity, TProperty> ComplexProperty<TProperty>(string propertyName)
{
Check.NotEmpty(propertyName, nameof(propertyName));
ValidateType<TProperty>(InternalEntry.EntityType.FindComplexProperty(propertyName));
return new ComplexPropertyEntry<TEntity, TProperty>(InternalEntry, Metadata.GetComplexProperty(propertyName));
}
private static void ValidateType<TProperty>(IPropertyBase? property)
{
if (property != null
&& property.ClrType != typeof(TProperty))
{
throw new ArgumentException(
CoreStrings.WrongGenericPropertyType(
property.Name,
property.DeclaringType.DisplayName(),
property.ClrType.ShortDisplayName(),
typeof(TProperty).ShortDisplayName()));
}
}
}