I am learning LLBLGen Pro and we are soon going to use it for a small project for a grocery store chain.
All of our SQL Server tables have a column called "Version" which is of type "timestamp". We want to use this for concurrency.
How can we have the code generator automatically include the check for this timestamp automatically for every table (entity) during save/update/delete?
I would like this to be automatic so that even if we used the ASP.Net LLBLGen datasource control and bound it to a GridView with LivePersistence on, it would be smart enough to detect an out-of-sync timestamp and throw an exception.