Steven Rasmussen
Steven Rasmussen
> So Period support would be nice :) Agreed! A contribution here would be great ;)
TBH - I haven't worked with periods much... and looking into it again I think my hesitation in implementing it was finding the best way to store it in SQL...
Ooohhhh.... interesting. I didn't see that `` `=` won't even work... that does simplify things as far as storing the data. Our best option is probably a string at this...
@HerrNiklasRaab - agreed. We would most likely use the `PeriodPattern.Rountrip.Format/Parse` methods as detailed by @benmccallum if we were to implement this.
There are not any plans currently to support the `ZonedDateTime` type. Based on the documentation I think we could serialize/deserialize the value in string format but it would be very...
@anthonylevine - Right... the issue is that there's no native SQL type that can store all the information for the `ZonedDateTime` NodaTime type. We could put it in a string...
Might be worth updating this document to include a note that if you add 1 line to the `LogLevel` node appsettings.json that you will get EF Core logging: `"Microsoft.EntityFrameworkCore.Database.Command": "Information"`...
That would be extremely helpful! More and more apps are moving towards using async/await and so it makes it difficult to incorporate any sort of complex logic into these methods...
Building on the workaround from @chelaru-artur making it a little more generic: ``` function currencyMask(rawValue: string) { let numDecimals = 2; let numberMask = createNumberMask({ prefix: '$', includeThousandsSeparator: true, allowDecimal:...
Any thoughts on this?