我是Asp.NetMVC 3的新手。我正在尝试使用EF4更新我的记录。这是我更新记录的代码。
[HttpPost]
public ActionResult Edit(Movie movies)
{
using(var db = new AmsecDevTestEntities1())
{
db.Movies.Attach(db.Movies.Single(m => m.Id == movies.Id));
db.Movies. (movies); //Im stuck here how can
我想把ASP.NETMVC成员资格提供者UserProfile表UserId字段保存到一个单独的表中吗?
这是我的模型
public class Product
{
public int ProductId { get; set; }
public int UserId { get; set; }
public string ProductName { get; set; }
}
我不想再把UserId字段添加到我的模型中了。这是我的控制器:
private UsersContext db = new UsersContext();
// GET: /ProCont/