Corniel Nobel
Corniel Nobel
Consider adopting [this extension method](https://github.com/Qowaiv/Qowaiv/blob/master/src/Qowaiv/Extensions/System.Type.cs): So: ``` C# typeof(int).ToCSharpString().Should().Be("int"); typeof(int[,,]).ToCSharpString().Should().Be("int[,,]"); typeof(Namespace.MyType).ToCSharpString().Should().Be("Namespace.MyType"); typeof(Dictionary[])).ToCSharpString().Should().Be("Dictionary[])"); // etc... ``` See the [specs](https://github.com/Qowaiv/Qowaiv/blob/master/specs/Qowaiv.Specs/Extensions/Type_specs.cs).
About the redesign, simplicity by default would be a prerequisite. Furthermore, I would try to put as much effort in to join forces with Uno (@jeromelaban and his colleguaes). It...
``` C# public enum CompilationStep { PreCompile, PostComile, } [AttributeUsage(AttributeTargets.Class, Inherited = false, AllowMultiple = false)] public abstract class CodeGenerationAttributeAttribute : Attribute where TGenerator : ICodeGenerator { protected CodeGenerationAttributeAttribute(CompilationStep compilationStep);...
@amis92 It is (or could be) cosmetic, but we're talking about simplicity, and this would help getting stuff right. The depedency on the TargetFramework is a big downside. Uno has...
@amis92 Claiming that i'm an expert on `MSBuild` would be too far fetched, but have some (actually more than that) experience. I gave it a second taught, and I think...
I'm willing to give it a try. Also looking into this at the moment and using [EventStore](https://eventstore.org/). Is there a guideline on how to do this? (I would advise to...
@dennisdoomen I'm not sure if the Dapper approach requires a package. I would just argue that you should not use EF (Core) period. For `insert`, it is overhead, and ADO.NET...
And how should a projector handle events where the `aggregate id` is not stored within the event itself, but only in an event envelope?
I thought of it. The big downside I see, is that it will result in the formatting code being duplicated. I'm not sure yet if that is worth the small...