At first glance, it doesn't appear that ASP.Net 2.0 will provide seamless integration with LLBLGenPro Entities. The ObjectDataSource thing needs a DataSet, a DataReader or a strongly-typed collection - and a plain-old entity object doesn't fit that bill.
I tried adding the entity to EntityCollection and passing that EntityCollection to the ObjectDataSource, but that didn't produce the field names for the entity - instead it produced two "fields" - "Fields" and "LLBLGenProEntityName". I tried to substitute "Fields" with "Fields[1]" and Fields["AccName"], but it didn't work.
Anyone have any ideas on this dilemma?
It looks like I'll have to continue to use my modified Web UI components (see: http://www.west-wind.com/presentations/aspnetdatabinding/aspnetdatabinding.asp)
Jeff