Column X in a database is encrypted with Always Encrypted keys and has type money.
EF entity has a property X with type decimal and the following configuration:
modelBuilder.Property(p => p.X).HasColumnType("money");
The exception I get while trying to insert the entity and call SaveChanges:

Column X in a database is encrypted with Always Encrypted keys and has type money.
EF entity has a property X with type decimal and the following configuration:
modelBuilder.Property(p => p.X).HasColumnType("money");The exception I get while trying to insert the entity and call SaveChanges:
