One of the engancements introduced by VS2008/.NET3.5 to support LINQ2DataSets is the introduction of the new type TypedTableBase<T> which extends the standard DataTable class.
When VS2008 (and the XSD.exe tool) generate a typed DataSet/DataTables, the resulting typed DataTable inherits from the new TypedTableBase<T> (instead of the DataTable class). This makes the resulting typed DataTable enumerable becuase TypedTableBase<T> implements IEnumerable and IEnumerable<T>. This in turn makes a typed DataTable queryable by LINQ.
Not meaning to go into lecture mode with the length introduction, but I thought to ask if LLBL's templates could do the same when generating typed DataTables targeting the .NET3.5 platform?