Hello
I have a field in a table which is declared as bigint, but Entity framework displays it as Int
This is causing me a problem because the model field is int32 but linq then tries to save as int64
If I change the field in the property to int64 I get type mismatch errors
Has anyone ever encountered this?
Paul