城市
CityID
Name
CountryID(FK)
国家
CountryID
CountryName
我想在gridview中显示所有城市显示CountryName而不是CountryID With EntityDatasource
什么是最佳解决方案?
答案 0 :(得分:-1)
你可以加入国家表和城市表。 select t1.Name,t1.CountryId,t2.CountryId,t2.CountryName Cities t1 inner join t1 on t1.CountryID = t2.CountryID
您可以替换Cuntryname而不是CountryID