You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: ChronoJsonDiffPatch/ChronoJsonDiffPatch/PatchingDirection.cs
+2-2
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ public enum PatchingDirection
21
21
/// </summary>
22
22
/// <remarks>
23
23
/// Although this doesn't feel as natural as <see cref="ParallelWithTime"/>, it might useful if you store changes to an entity in a database and you always want to have the most recent/youngest state as "full" entity and persist the past as patches.
24
-
/// Then you always start with the youngest entity and patch "backwards" until you reach the point in time/in the past in which you're interested.
24
+
/// Then you always start with the youngest entity and patch "backwards" until you reach the point in time/in the past in which you're interested.
Copy file name to clipboardexpand all lines: ChronoJsonDiffPatch/ChronoJsonDiffPatch/ProductEntity.cs
+4-2
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
namespaceChronoJsonDiffPatch;
2
2
3
3
/// <summary>
4
-
/// A ProductEntity is a composite of both an <typeparamref name="TEntityA"/> and a <typeparamref name="TEntityB"/>.
4
+
/// A ProductEntity is a composite of both an <typeparamref name="TEntityA"/> and a <typeparamref name="TEntityB"/>.
5
5
/// </summary>
6
6
/// <remarks>This is a shortcut for a <see cref="Tuple{TEntityA, TEntityB, DateTimeOffset}"/></remarks>
7
7
/// <typeparam name="TEntityA"></typeparam>
@@ -12,10 +12,12 @@ public class ProductEntity<TEntityA, TEntityB>
12
12
/// describes the date at which <typeparamref name="TEntityA"/> has state <see cref="EntityA"/> and <typeparamref name="TEntityB"/> has state <see cref="EntityB"/>
13
13
/// </summary>
14
14
publicDateTimeOffsetKeyDate{get;}
15
+
15
16
/// <summary>
16
17
/// an instance of <typeparamref name="TEntityA"/> @ <see cref="KeyDate"/>
17
18
/// </summary>
18
19
publicTEntityAEntityA{get;}
20
+
19
21
/// <summary>
20
22
/// an instance of <typeparamref name="TEntityB"/> @ <see cref="KeyDate"/>
0 commit comments