I'm on 2.0.0.0 final, using SQL Server 2000, SelfServicing, Two classes, VB.NET in Visual Studio 2005.
Our old database has tables with PKs with more than one field, eg TypeID and SubTypeID, but also a unique TableID which is an 'Identity' field but not defined as such in SQL Server, so we have to select max(TableID) and add 1 to it within a transaction before an Insert.
(I didn't design this!)
What's the best way to do this using LLBLGEN?