Hi all,
It appears that I am near the end of my first applied framework application.
Everything appears to be working with no errors during compile.
When testing I was able to pull up the form and input information, all of the validation works as it should and the record saved.
The second record would not save because it is trying to pass ID = 0 to ensure that it is a new record. However I do not fully understand where does it increment the primary key information. I checked that Identity Specification > Identity Increment was turned on but now I get the following error when saving from the HRPaidTimeOff.designer.cs
Code:
Cannot insert explicit value for identity column in table 'AETransfer' when IDENTITY_INSERT is set to OFF.
This appears to be a SQL related issue but I am not so sure.
I looked through the book's index to see if I could find IDENTITY_INSERT anywhere but it is not listed. Im flying blind on this one, I could do a dirty hack to get around it, but I would like to have my first implementation of the the framework pure incase I have to reference it (which would be often)
Thanks