Hi,
Is there any way to get the Output parameter or new Identity value generated while doing Insert statement using LLBLGen persist method?
I want to avoid refetch with the save. All I need is the new Id value which is an Identity column
Yes, specify false for the refetch parameter of the save. The new Id value will be available on the entity Id property - accessing any other field will result in an OutOfSync exception.
Matt