tmatelich wrote:
Sorry, yes, I should have marked it closed, just was still pondering my options. The variance of multiple clients adding results with their own local clocks is causing some consternation, but I think I can't afford that traffic right now.
Yep. It is this way: If you want to get the value of a field that is filled by DB you must fetch it.
tmatelich wrote:
Is it possible to set LLBLGen up to retrieve other values in the same fashion as the PK by overriding some function for my own needs? Or is that a special case not extendable to other columns?
You could:
A. Fetch the DB NOW() value before save your entity, then set it to your field and save it, without refetching it.
B. Save the entity and set the column's default DB value to NOW(), without refething it. Then you fetch the entity again using ExcludeIncludeFieldsList to just fetch the desire datetime field. This of course is a round-trip but only of the desire fields.
C. Do it as the normal way: save-refetch. I know your roundtrip situation but this is how the world works. A hardware/software configuration or upgrade should be applicable here