Ok here is my scenario:
-LLBLGen Pro 2.0
-Adapter with 2 classes
-SQL Server Express
DataAccessAdapter adapter = new DataAccessAdapter(true);
EntityCollection<CalendarEventEntity> calendarEvents = new EntityCollection<CalendarEventEntity>(new CalendarEventEntityFactory());
adapter.FetchEntityCollection(calendarEvents, null);
uxDebugDataGrid.DataSource = calendarEvents;
uxDebugDataGrid.DataBind();
The UI has "Autogenerate columns to true"
More work into this shows the following results:
-Nullable "BIT" and "INT" columns are the ones not displaying by default.
If I manually define the datagrid columns they will show.
This is not a big issue as I will likely never use autogenerate columns, but I'm interested as to why this is happening. Is something wrong with my setup?