Source generator and analyzer to create Value Objects.
usingSystem;usingTransparentValueObjects;[ValueObject<Guid>]publicreadonlypartialstructMyId{}The attribute ValueObject<TInnerValue> will generate a partial implementation of this readonly struct with the following defaults:
- A
public readonly TInnerValue Valuefield. - A
public static T From(TInnerValue innerValue)method that uses the private constructor. - A private constructor used by the
Frommethod. - A public constructor marked as
Obsoletewitherror: truethat will throw an exception if called (this behavior can be overwritten using Augments). GetHashCodeandToStringimplementations that call the same methods on the inner value.- Equality methods:
object.Equals,IEquatable<T>andIEquatable<TInnerValue>.==and!=operators.- Additional
Equalsmethod withIEqualityComparer<TInnerValue>parameter.
- Explicit cast operators.
IComparable<T>andIComparable<TInnerValue>ifTInnerValueimplementsIComparable<TInnerValue>.<,<=,>and>=operators.
- For
Guidonly:NewIdmethod that callsFrom(Guid.NewGuid()).
You can check the test files to view the generated output.
The biggest selling point of this project is the augment feature. You can use the IAugmentWith interface to "augment" your Value Object with additional functionality:
usingSystem;usingTransparentValueObjects;[ValueObject<Guid>]publicreadonlypartialstructSampleGuidValueObject:IAugmentWith<DefaultValueAugment,JsonAugment,EfCoreAugment>{/// <inheritdoc/>publicstaticSampleGuidValueObjectDefaultValue=>From(Guid.Empty);}The following augments are currently available:
Augments the Value Object with the IDefaultValue interface that has a static member DefaultValue:
publicstaticabstractTValueObjectDefaultValue{get;}usingSystem;usingTransparentValueObjects;[ValueObject<Guid>]publicreadonlypartialstructSampleGuidValueObject:IAugmentWith<DefaultValueAugment>{/// <inheritdoc/>publicstaticSampleGuidValueObjectDefaultValue=>From(Guid.Empty);}You have to implement the DefaultValue member when using this augment. The public constructor will now also be available:
publicSampleGuidValueObject(){Value=DefaultValue.Value;}Augments the Value Object with the IDefaultEqualityComparer interface that has a static member InnerValueDefaultEqualityComparer:
publicstaticabstractIEqualityComparer<TInnerValue>InnerValueDefaultEqualityComparer{get;}[ValueObject<string>]publicreadonlypartialstructSampleStringValueObject:IAugmentWith<DefaultEqualityComparerAugment>{/// <inheritdoc/>publicstaticIEqualityComparer<string>InnerValueDefaultEqualityComparer=>StringComparer.OrdinalIgnoreCase;}This default equality comparer will be used by the following methods:
publicboolEquals(SampleStringValueObjectother)=>Equals(other.Value);publicboolEquals(string?other)=>InnerValueDefaultEqualityComparer.Equals(Value,other);publicoverrideintGetHashCode()=>InnerValueDefaultEqualityComparer.GetHashCode(Value);This augment is especially great for strings if you want to always use the case-insensitive equality comparer.
Augments the Value Object with a JSON converter:
[ValueObject<string>]publicreadonlypartialstructSampleStringValueObject:IAugmentWith<JsonAugment>{}OnlySystem.Text.Json is currently supported! See #11 for Newtonsoft.Json support.
[JsonConverter(typeof(JsonConverter))]readonlypartialstructSampleStringValueObject{publicclassJsonConverter:JsonConverter<SampleStringValueObject>{/* omitted */}}The JsonConverterAttribute will be added to the Value Object, meaning that you can use the added converter without needing to manually add it to the JSON options.
The source generator will create a custom converter for the following types:
stringGuidInt16Int32Int64UInt16UInt32UInt64
All other types will use a fallback converter that fetches an existing converter for TInnerValue.
Note: If the inner value type is a reference type, like string, then you will need to also augment the Value Object with the DefaultValueAugment.
Augments the Value Object with a ValueConverter<T, TInnerValue> and ValueComparer<T>:
[ValueObject<string>]publicreadonlypartialstructSampleStringValueObject:IAugmentWith<EfCoreAugment>{}publicclassEfCoreValueConverter:ValueConverter<SampleStringValueObject,string>{publicEfCoreValueConverter():this(mappingHints:null){}publicEfCoreValueConverter(ConverterMappingHints?mappingHints=null):base(static value =>value.Value,static innerValue =>From(innerValue),mappingHints){}}publicclassEfCoreValueComparer:ValueComparer<SampleStringValueObject>{publicEfCoreValueComparer():base(static(left,right)=>left.Equals(right),static value =>value.GetHashCode(),static value =>From(value.Value)){}/// <inheritdoc/>publicoverrideboolEquals(SampleStringValueObjectleft,SampleStringValueObjectright)=>left.Equals(right);/// <inheritdoc/>publicoverrideSampleStringValueObjectSnapshot(SampleStringValueObjectinstance)=>From(instance.Value);/// <inheritdoc/>publicoverrideintGetHashCode(SampleStringValueObjectinstance)=>instance.GetHashCode();}See LICENSE for details.