Open
Description
I have an IPropertyConverter
from NodaTime.ZonedDatetime
to string
I can register this either via DynamoDBPropertyAttribute
or AWSConfigsDynamoDB.Context.AddMapping
as illustrated here
This works ok but is repetitive and error prone
Is it possible to globally register a type converter?
e.g (imagined) AWSConfigsDynamoDB.Context.AddTypeMapping<ZonedDatetime, ZonedDateTimeConverter>()