Hi guys,
I'm using LLBLGen Pro version 2.5 final (Nov 5th,2007) to generate code with SelfService method. When I'm attempting to update an existing record in database, after update successfully, a duplicate record will be added into database. I usually use this way to do that and it works well, but except one table. I post the code I used here for reference
WorkDetailEntity entWork = new WorkDetailEntity();
entWork.FetchUsingPK(WorkDetailID);
entWork.WorkDate = DateTime.Now;
...
...
entWork.Save();
Any idea for this?
Thanks in advance!
Nanako.