Showing data from related tables in single datagridview
问题 I have some tables in the db: Items Manufacturers Categories Cities Regions ============== ================ ============ ======== ========== ItemId ManufacturerId CategoryId CityId RegionId ManufacturerId CityId NameCategory RegionId NameRegion CategoryId NameManufacturer NameCity NameItem Weight I am displaying the list of the items in DataGridView using this code: DataSet ds = new DataSet(); SqlDataAdapter da = new SqlDataAdapter("select * from Items", connectionString); SqlCommandBuilder