Stefan Over
Stefan Over
@SteveDunn What's the purpose for this? Maintainability or performance?
@viceroypenguin 👍 The `ThrowHelper` methods from [`CommunityToolkit.Diagnostics`](https://github.com/CommunityToolkit/dotnet/tree/main/CommunityToolkit.Diagnostics) would only be used for the system exceptions then. Is that the only purpose, or should the [`ValueObjectValidationException`](https://github.com/SteveDunn/Vogen/blob/main/src/Vogen.SharedTypes/ValueObjectValidationException.cs) receive a wrapper method as...
From the existing attributes, these might be relevant (ordered descending by usefulness, IMO): - [RangeAttribute](https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.dataannotations.rangeattribute?view=net-6.0) (only for numerics) - [RegularExpressionAttribute](https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.dataannotations.regularexpressionattribute?view=net-6.0) (only for strings) - [StringLengthAttribute](https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.dataannotations.stringlengthattribute?view=net-6.0) (only for strings) - [MinLengthAttribute](https://docs.microsoft.com/en-us/dotnet/api/system.componentmodel.dataannotations.minlengthattribute?view=net-6.0)...
@dzmitry-lahoda @SteveDunn The purpose of "value objects" is to be a in-place replacement for primative types. Instead of using `Int32`, `Double`, `Guid`, `String`, etc, a non-primative type obsessed developer should...
@SteveDunn A suggestion that came to my mind while reading this: maybe enhance the analyzers to promote the usage of `readonly struct` instead of a `struct` as an _Information_ or...
@SteveDunn The feature for generic attributes has been moved to C# 11: https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-11#generic-attributes If not delayed again, we'll see this in November 2022. The easiest implementation would be by inheriting...
> lgtm. Maybe next step we could automatically publish images into hub.docker.com? That would be great, and would make it much easier for production environments :D
@hifabienne @mffap Will this cover [this new suggestion](https://github.com/zitadel/zitadel/discussions/4125)?
This is currently the blocking issue for me to switch from AutoMapper to Mapperly. I'm receiving requests that are mapped to an internal command and require additional properties from the...
@TimothyMakkison I think most of the listed questions derive from the fact that you approach it in an implicit way. Wouldn't most of these questions vanish if we followed an...