Casper Schmidt Wandahl-Liper

Results 64 comments of Casper Schmidt Wandahl-Liper

Ah okay, > Fix DateSystem.IsPublicHoliday(DateTime date, CountryCode countryCode) But it would still be nice to have the tags to easily find the actual code changes. The above description is not...

This relates to the discussion in #146

This looks good and is much appreciated :)

>So if you can rearrange the order that you call Property it should work as expected. That won't work as the order is different for each provider. Trade date might...

A small snip from one of the configurations (another model though) for a better understanding: ![image](https://user-images.githubusercontent.com/3481853/134633445-d4827573-f781-47ad-9a6f-33569641e8a8.png) Btw. Sometimes the same column is added to multiple properties in the model, but...

We decided to go in another direction, simply stating the length of each column in a new configuration value and then using that to pre-process the file by transforming it...

![image](https://user-images.githubusercontent.com/3481853/136902559-eedf9c0f-a83a-4bef-ad87-7c061ffc8d2f.png) Using a decorator with less than 100 LoC (including include statements etc.) to do the work

How about the simple step of returning the container instead of void? This would allow a series of regitrations: ``` container.Register(typeof(ICommandHandler)) .RegisterDecorator(typeof(ICommandHandler), typeof(LoggingDecorator)) .RegisterDecorator(typeof(ICommandHandler), typeof(SecurityDecorator)); ``` Instead of having each...

@dotnetjunkie That's alright. Perhaps I misread the monologue/discussion above, but as I understood it, you don't see any good ways to implement a fluent API. That's why I suggested the...

This is a really good idea, too bad it has been dead for so long :(