We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Mapping to DateOnly data type is not working or at least it can be done is not so straight forward way.
My current work around as follows: `
mapper.Map<FeedSapTivBill>("Invoice date", r => r.InvoiceDate, (s, t) => { if (s.HeaderValue == null) return false; ((FeedSapTivBill)t).InvoiceDate = DateOnly.FromDateTime((DateTime)s.CurrentValue); return true; }
It will be nice if it will work outomatically
The text was updated successfully, but these errors were encountered:
you already get Exact DateTime
Sorry, something went wrong.
Yes, however I'm mapping it to DateOnly type, therefore I have to convert the value to DateOnly. In this example is from datetime
No branches or pull requests
Mapping to DateOnly data type is not working or at least it can be done is not so straight forward way.
My current work around as follows:
`
It will be nice if it will work outomatically
The text was updated successfully, but these errors were encountered: