city_Nameのような列ナビゲーションプロパティに表示したいこのコードを書きましたが、何も起こりません
<DataGrid Margin="210,15" Grid.Row="1" CanUserAddRows="False" AutoGenerateColumns="False" Name="dg_Super" RowHeight="20" >
<DataGrid.Columns>
<DataGridTextColumn Width="*" Header="Super Name" Binding="{Binding Path=SupermarketName, Mode=OneTime}"></DataGridTextColumn>
<DataGridTextColumn Width="*" Header="City" Binding="{Binding Path=City1.CityName, Mode=OneTime}"></DataGridTextColumn>
</DataGrid.Columns>
</DataGrid>
とc#コード
var super = mh.Supermarkets;
dg_Super.ItemsSource = super.ToList();
City1は、efモデルのナビゲーションプロパティです。ここで何が問題なのですか?