We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5ff2ba commit 2472f86Copy full SHA for 2472f86
samples/Thinktecture.Runtime.Extensions.Samples/ValueObjects/EndDate.cs
@@ -3,9 +3,10 @@
3
namespace Thinktecture.ValueObjects;
4
5
[ValueObject(DefaultInstancePropertyName = "Infinite",
6
- EqualityComparisonOperators = OperatorsGeneration.DefaultWithKeyTypeOverloads)] // for comparison with DateTime without implicit cast
+ EqualityComparisonOperators = OperatorsGeneration.DefaultWithKeyTypeOverloads)] // for comparison with DateOnly without implicit cast
7
public readonly partial struct EndDate
8
{
9
+ // Source Generator should work with the property "Date" only and ignore this backing field
10
[ValueObjectMemberIgnore]
11
private readonly DateOnly? _date;
12
0 commit comments