我需要在我的 mvc 应用程序中创建发票功能。我有这个模型类:
public class Product
{
public int ProductId { get; set; }
public int SupplierId { get; set; }
public int CategoryId { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public decimal Price { get; set; }
public double costPrice { get; set; }
public string ProductPicUrl { get; set; }
public ProductCategory Category { get; set; }
public Supplier Supplier { get; set; }
}
1.我需要在不使用 ViewData 的情况下让我的视图显示所有产品(特别是所有产品名称)的下拉列表 2.我需要能够单击转到我的 AddToInvoice 控制器方法的按钮。我只是不确定如何让它将 productid 从下拉列表中拉出并将其发送到该方法。
有人可以帮忙吗?即使只是解释如何制作下拉列表?