We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f994d8e commit 0d29af4Copy full SHA for 0d29af4
2 files changed
DomainModeling/DomainModeling.csproj
@@ -74,7 +74,6 @@ Misc:
74
- Fix: Fixed bug where DummyBuilder generator struggled with nested types.
75
- Fix: Fixed bug where "no source generation on nested type" warning would not show.
76
- Enhancement: CompilerGeneratedAttribute throughout.
77
-- Enhancement: Entity.Id has private init.
78
- Enhancement: DebuggerDisplay for Wrappers/Identities.
79
- Enhancement: Analyzer warning clarity.
80
- Enhancement: Improved correctness of trimming.
DomainModeling/Entity.cs
@@ -81,7 +81,7 @@ public abstract class Entity<
81
/// <summary>
82
/// The entity's unique identity.
83
/// </summary>
84
- public TId Id { get; private init; }
+ public TId Id { get; }
85
86
/// <param name="id">The unique identity for the entity.</param>
87
protected Entity(TId id)
0 commit comments