I have the following situation (using Adapter):
Table: GLMoneyWithdrawal has a PK filed MWId
PK field: MWID nvarchar(40) gets its value from an Insert Trigger on the table
LLBL code:
Dim adapter As DataAccessAdapter = New DataAccessAdapter()
Dim ok As Boolean = adapter.SaveEntity(Me, refetchAfterSave:=True)
I am getting an error concerning recursive save and my entity is out of sync. I read the documentation about this issue and would like the follwoing:
1- explanation why LLBL can't get this sort of auto-values from the table
2- a solution to this situation as it is impossible for me to drop my table design or my LLBL framework code (there has to be a workround for such situtions)
OMAR