One of my object objects (EF4) has a property that is decimal. Field in the database - Decimal (18,2)
If I set the value to 30.4777, it will only send 30.47 to db in the insert statement (as confirmed by the tracer). Is there a way to get it to send 30.4777, and then just let the database round it up (which seems happy otherwise)?
source share