如何在下拉列表

时间:2015-10-29 08:07:05

标签: entity-framework asp.net-mvc-4 html-select

我想在客户表see the pic中出现的customerID的基础上创建客户日记。

在customerID字段中,我想要下拉列表,其中包含数据库中存在的CustomerId列表

我该怎么做?请有人帮帮我

2 个答案:

答案 0 :(得分:1)

var _objAllCustomerIds = null; 
using (AdventureWorksEntities context = new AdventureWorksEntities())    
{

_objAllCustomerIds = context.MyCustomers.Select(customer =>     customer.Id).ToList();

}
  

//其中AdventureWorksEntities是包含所有实体的DBcontent   // MyCustomers是您的客户表的实体表示

答案 1 :(得分:0)

如果这是在你的.aspx文件中

然后在您的.aspx.cs文件中(假设您正在使用后面的代码),您将获得客户ID列表,然后将该列表绑定到此下拉列表。

其他问题的回答是否有帮助? How to bind the selected value of a DropDownList