ASP.NET MVC 5与实体框架有很多很多关系

时间:2022-09-18 08:49:56

I have a many-to-many relationship between User and Task model. I want to assign tasks to users when I am creating a new task. Because of that I created UserViewModel and CheckBoxView model. But now I can just assign tasks to users when I am editing a user table. I know I have to change UserController's Create action but I do not know how.

我在User和Task模型之间有多对多的关系。我想在创建新任务时为用户分配任务。因为我创建了UserViewModel和CheckBoxView模型。但是现在我可以在编辑用户表时将任务分配给用户。我知道我必须更改UserController的Create操作,但我不知道如何操作。

Here is my code:

这是我的代码:

public class User
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Surname { get; set; }

    public virtual ICollection<UserToTask> UserToTasks { get; set; }
}

public class Task
{
    public int Id { get; set; }
    public string Title { get; set; }

    public virtual ICollection<UserToTask> UserToTasks { get; set; }
}

public class UserToTask
{
    public int Id { get; set; }
    public int UserId { get; set; }
    public int TaskId { get; set; }

    public virtual User User { get; set; }
    public virtual Task Task { get; set; }
}

public class CheckBoxViewModel
{
    public int Id { get; set; }
    public string Name { get; set; }
    public bool Checked { get; set; }
}

public class UserViewModel
{
    public int UserId { get; set; }
    public string Name { get; set; }
    public string Surname { get; set; }
    public List<CheckBoxViewModel> Tasks { get; set; }
}

User Controller:

public class UsersController : Controller
{
    private MyModel db = new MyModel();

    // GET: Users
    public ActionResult Index()
    {
        return View(db.Users.ToList());
    }

    // GET: Users/Create
    public ActionResult Create()
    {
        return View();
    }

    // POST: Users/Create
    // To protect from overposting attacks, please enable the specific properties you want to bind to, for 
    // more details see https://go.microsoft.com/fwlink/?LinkId=317598.
    [HttpPost]
    [ValidateAntiForgeryToken]
    public ActionResult Create([Bind(Include = "Id,Name,Surname")] User user)
    {
        if (ModelState.IsValid)
        {
            db.Users.Add(user);
            db.SaveChanges();
            return RedirectToAction("Index");
        }

        return View(user);
    }

    // GET: Users/Edit/5
    public ActionResult Edit(int? id)
    {
        if (id == null)
        {
            return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
        }

        User user = db.Users.Find(id);

        if (user == null)
        {
            return HttpNotFound();
        }

        var result = from a in db.Tasks
            select new
            {
                a.Id,
                a.Title,
                Checked = (from ab in db.UserToTasks
                    where (ab.UserId == id) & (ab.TaskId == a.Id)
                    select ab).Any()
            };

        var MyViewModel = new UserViewModel();
        MyViewModel.UserId = id.Value;
        MyViewModel.Name = user.Name;
        MyViewModel.Surname = user.Surname;

        var MyCheckBoxList = new List<CheckBoxViewModel>();

        foreach (var item in result)
        {
            MyCheckBoxList.Add(new CheckBoxViewModel{Id = item.Id, Name = item.Title, Checked = item.Checked});
        }

        MyViewModel.Tasks = MyCheckBoxList;

        return View(MyViewModel);
    }

    // POST: Users/Edit/5
    // To protect from overposting attacks, please enable the specific properties you want to bind to, for 
    // more details see https://go.microsoft.com/fwlink/?LinkId=317598.
    [HttpPost]
    [ValidateAntiForgeryToken]
    public ActionResult Edit(UserViewModel user)
    {
        if (ModelState.IsValid)
        {
            var MyUser = db.Users.Find(user.UserId);
            MyUser.Name = user.Name;
            MyUser.Surname = user.Surname;

            foreach (var item in db.UserToTasks)
            {
                if (item.UserId == user.UserId)
                {
                    db.Entry(item).State = EntityState.Deleted;
                }
            }

            foreach (var item in user.Tasks)
            {
                if (item.Checked)
                {
                    db.UserToTasks.Add(new UserToTask() {UserId = user.UserId, TaskId = item.Id});
                }
            }

            db.SaveChanges();
            return RedirectToAction("Index");
        }
        return View(user);
    }   
}

Edit view:

@model ItalianCoach.Models.UserViewModel

@using (Html.BeginForm())
{
@Html.AntiForgeryToken()

<div class="form-horizontal">
    <h4>User</h4>
    <hr />
    @Html.ValidationSummary(true, "", new { @class = "text-danger" })
    @Html.HiddenFor(model => model.UserId)

    <div class="form-group">
        @Html.LabelFor(model => model.Name, htmlAttributes: new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.Name, new { htmlAttributes = new { @class = "form-control" } })
            @Html.ValidationMessageFor(model => model.Name, "", new { @class = "text-danger" })
        </div>
    </div>

    <div class="form-group">
        @Html.LabelFor(model => model.Surname, htmlAttributes: new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @Html.EditorFor(model => model.Surname, new { htmlAttributes = new { @class = "form-control" } })
            @Html.ValidationMessageFor(model => model.Surname, "", new { @class = "text-danger" })
        </div>
    </div>

    <div class="form-group">
        @Html.LabelFor(model => model.Tasks, htmlAttributes: new { @class = "control-label col-md-2" })
        <div class="col-md-10">
            @for (int i = 0; i < Model.Tasks.Count(); i++)
            {
                @Html.EditorFor(m => m.Tasks[i].Checked)
                @Html.DisplayFor(m => m.Tasks[i].Name)<br/>

                @Html.HiddenFor(m => m.Tasks[i].Name)
                @Html.HiddenFor(m => m.Tasks[i].Id)
            }
        </div>
    </div>
</div>
}

1 个解决方案

#1


0  

You do not need the UserToTask class. The relationships between them should be with the object classes themselves.

您不需要UserToTask类。它们之间的关系应该与对象类本身有关。

public class User
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Surname { get; set; }

    public int TaskId { get; set; }
    public virtual Task Task { get; set; }

    public virtual ICollection<Task> Tasks { get; set; }
}

public class Task
{
    public int Id { get; set; }
    public string Title { get; set; }
}

You add in the TaskId as foreign key in the User class. Each User will have a collection of Tasks (which may or may not be empty - so be careful with your constructors).

您将TaskId作为外键添加到User类中。每个用户都有一个任务集合(可能是也可能不是空的 - 所以要小心你的构造函数)。

To find all the Users for a particular Task - you use a database query on Users -> where TaskId == Task.Id.

要查找特定任务的所有用户 - 您在用户上使用数据库查询 - >其中TaskId == Task.Id.

You'll need to sort out the xaml, controllers, etc, to fit the new model.

您需要整理xaml,控制器等,以适应新模型。

#1


0  

You do not need the UserToTask class. The relationships between them should be with the object classes themselves.

您不需要UserToTask类。它们之间的关系应该与对象类本身有关。

public class User
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Surname { get; set; }

    public int TaskId { get; set; }
    public virtual Task Task { get; set; }

    public virtual ICollection<Task> Tasks { get; set; }
}

public class Task
{
    public int Id { get; set; }
    public string Title { get; set; }
}

You add in the TaskId as foreign key in the User class. Each User will have a collection of Tasks (which may or may not be empty - so be careful with your constructors).

您将TaskId作为外键添加到User类中。每个用户都有一个任务集合(可能是也可能不是空的 - 所以要小心你的构造函数)。

To find all the Users for a particular Task - you use a database query on Users -> where TaskId == Task.Id.

要查找特定任务的所有用户 - 您在用户上使用数据库查询 - >其中TaskId == Task.Id.

You'll need to sort out the xaml, controllers, etc, to fit the new model.

您需要整理xaml,控制器等,以适应新模型。