(Using v 1.0.2005.1 Final, Sql server 2000 and adapter)
Bug:
When producing a dynamic list with a between clause this is the sql created...
SELECT xxx FROM [ccc6_skv].[dbo].[shifts] AS [Shift]
WHERE ( [ccc6_skv].[dbo].[shifts].[shift_id] BETWEEN 1 AND 2)
The SQL Server raises an error. The t-sql should use the alias in the where cluase, something like this...
SELECT xxx FROM [ccc6_skv].[dbo].[shifts] AS [Shift]
WHERE ( [shift].[shift_id] BETWEEN 1 AND 2)