Hi,
When I run JPA, I can do everything except save. If I save I get error:
An explicit value for the identity column in table ‘Country’ can only be specified when a column list is used and IDENTITY_INSERT is ON
The error is correct because our database table’s PK is databse automatically generated. When I use insert sql command I have to drop PK value. Otherwise I will get the above error.
How should I do?
This problem is fatal problem to me.
Thanks