LLBLGen Pro supports all types of the databases supported, thus also GUIDs. Be sure that you don't define GUIDs in the db, with newid() or RowId(), as these values can't be read back after an insert. Set the GUIDs in the client:
CustomerEntity c = new CustomerEntity();
c.CustomerID = Guid.NewGuid();
//...
c.Save();