1

我的数据库中有一个这样的表:

[id] [uniqueidentifier] NOT NULL,
[user_id] [uniqueidentifier] NOT NULL,
[download_type] [nvarchar](50) NOT NULL,
[download_id] [nvarchar](50) NOT NULL,
[download_date] [datetime] NOT NULL,
[user_ip_address] [nvarchar](20) NOT NULL,

id定义为主键。

我想在这个表中插入一条新记录。这是我无法开始工作的代码。

CustomerPortalEntities_Customer_Downloads dbcd = new CustomerPortalEntities_Customer_Downloads();

public ActionResult Download(string id)
{
    var collection = new FormCollection();
    collection.Add("user_id", Membership.GetUser().ProviderUserKey.ToString());
    collection.Add("download_type", "Car");
    collection.Add("download_id", id);
    collection.Add("download_date", DateTime.Now.ToString());
    collection.Add("user_ip_address", Request.ServerVariables["REMOTE_ADDR"]);            

    dbcd.AddToCustomer_Downloads(collection);

    return Redirect("../../Content/files/" + id + ".EXE");
}

我得到的错误是在线 dbcd.AddToCustomer_Downloads(collection);

'CustomerPortalMVC.Models.CustomerPortalEntities_Customer_Downloads.AddToCustomer_Downloads(CustomerPortalMVC.Models.Customer_Downloads)' 的最佳重载方法匹配有一些无效参数

参数“1”:无法从“System.Web.Mvc.FormCollection”转换为“CustomerPortalMVC.Models.Customer_Downloads”

我需要改变什么才能使这项工作?

4

2 回答 2

4

您需要为CustomerPortalMVC.Models.Customer_Downloads方法提供一个类型的对象,AddToCustomer_Downloads然后SaveChanges像这样调用您的数据上下文:

public ActionResult Download(string id) 
{ 
    var item = new CustomerPortalMVC.Models.Customer_Downloads(); 
    item.user_id = Membership.GetUser().ProviderUserKey.ToString(); 
    item.download_type = "Car"; 
    item.download_id = id; 
    item.download_date = DateTime.Now.ToString(); 
    item.user_ip_address = Request.ServerVariables["REMOTE_ADDR"];             
    dbcd.AddToCustomer_Downloads(item); 
    dbcd.SaveChanges(); 
    return Redirect("../../Content/files/" + id + ".EXE"); 
} 
于 2012-06-19T21:03:34.937 回答
1

您需要创建 Customer_Downloads 类的实例并将其传递给您的 AddToCustomer_Downloads 方法。错误消息告诉您该方法的接口需要一个 Customer_Downloads 对象,但您正在向它传递一个 FormCollection 对象。

于 2012-06-19T20:59:59.637 回答