Hello, I need help in the following scenario.
I have a class, where the field is int64 in the backend and in SQL Server the field is bigint.
ObjClasse.VariavelInteira = numInt;
db.SaveChanges();
When saving, the error it presents is:
An exception of type 'System.Data.Entity.Validation.DbEntityValidationException' occurred in EntityFramework.dll but was not handled in user code
How can I identify the error?