An [earlier issue](https://github.com/leonardoporro/Detached-Mapper/issues/48) mentioned that DateOnly is not natively supported in this library. So I included the following when configuring my mapper:- ` .UseMapping(cfg => { cfg.Options.Primitives.Add(typeof(DateOnly)); }) ` Then I map dto to model using code:- ` var stock = await context.MapAsync<Stock>(vm); ` I still get the error:- ` ArgumentException: Static property requires null instance, non-static property requires non-null instance. (Parameter 'expression') System.Linq.Expressions.Expression.Property(Expression expression, PropertyInfo property) `