这是我第一次使用实体框架模型的Code First方法。我正在尝试使用用户信息填充数据网格,但网格列未显示任何信息。
<dx:ASPxGridView ID="Customer_Grid" runat="server" AutoGenerateColumns="False" Width="170px" >
<Columns>
<dx:GridViewDataTextColumn Name="CustomerName" VisibleIndex="0">
</dx:GridViewDataTextColumn>
</Columns>
</dx:ASPxGridView>
这是我的代码
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
ecdevelopmentEntities DB = new ecdevelopmentEntities();
Customer_Grid.DataSource = DB.Customers.ToList();
Customer_Grid.DataBind();
}
}