So the problem is that I can't set the model so that the migration will show DateTimeKind.Utc instead of DateTimeKind.Unspecified
I'm doing this:
contactsConfiguration
.Property(c => c.DateAdded)
.ValueGeneratedOnAdd()
.HasConversion(v => v, v => DateTime.SpecifyKind(v, DateTimeKind.Utc))
Any ideas?