无法使用EF DB模型填充GridViewDataTextColumn

时间:2015-09-21 13:54:06

标签: c# asp.net entity-framework

这是我第一次使用实体框架模型的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();
   }
}

0 个答案:

没有答案