views:

20

answers:

1

One of my entity objects (EF4) has a property that is a decimal. The field in the database is Decimal(18,2)

If I set the value to 30.4777 it only sends 30.47 over to the 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 off (which it seems happy to otherwise do)?