1👍
Well eVolve was on the rigt track I guess, I just checked the model back and I had
entity.Property(e => e.LastModified)
.HasColumnName("lastModified")
.HasColumnType("date");
Instead of
entity.Property(e => e.LastModified)
.HasColumnName("lastModified")
.HasColumnType("datetime2");
- [Vuejs]-How validate two file input with vue.js
- [Vuejs]-Separate global basic styles from every page using webpack in vue-cli3
Source:stackexchange.com