自动映射映射IEnumerable <selectlistitem>用于下拉菜单</selectlistitem>

时间:2012-06-07 19:42:24

标签: c# asp.net asp.net-mvc viewmodel automapper

问题

我目前正在为我的MVC项目添加自动化功能而且我被卡住了。现在我有一个User模型用于表示数据库中的数据。我必须将该模型映射到EditUserModel,这将在调用Edit方法时使用。 EditUserModel有IEnumerable<SelectListItem>(对于下拉菜单),我似乎无法弄清楚如何映射。

尝试解决方案

截至目前,我还没有尝试过任何事情。我不确定IEnumerable<SelectListItem>的最佳位置或填充位置。现在它正在控制器中填充。

User.cs

public class User
{
    [Key]
    public int UserID { get; set; }

    public string Username { get; set; }

    public string Password { get; set; }

    public int RoleID { get; set; }

    [ForeignKey("RoleID")]
    public virtual Role Role { get; set; }
}

EditUserModel.cs

public class EditUserViewModel
{
    [HiddenInput(DisplayValue = false)]
    public int UserID { get; set; }

    [Required]
    public String Username { get; set; }

    [Required]
    [DataType(DataType.Password)]
    public string Password { get; set; }

    [DisplayName("Role")]
    [Required]
    public int RoleID { get; set; }

    //The trouble field
    public IEnumerable<SelectListItem> Roles { get; set; }
}

Controller.cs

EditUserViewModel model = new EditUserViewModel();
//Population of the dropdown menu
model.Roles = context.Roles
    .ToList()
    .Select(x => new SelectListItem
    {
        Text = x.Description,
        Value = x.RoleID.ToString()
    });
//Mapping that the automaper will take care of
model.UserID = user.UserID;
model.Username = user.Username;
model.RoleID = user.RoleID;

2 个答案:

答案 0 :(得分:6)

为了记录,这是我在对Jakub的答案的评论中所谈论的内容:

public static class EnumerableExtensions
{
    public static IEnumerable<SelectListItem> ToSelectList<T, TTextProperty, TValueProperty>(this IEnumerable<T> instance, Func<T, TTextProperty> text, Func<T, TValueProperty> value, Func<T, bool> selectedItem = null)
    {
        return instance.Select(t => new SelectListItem
        {
            Text = Convert.ToString(text(t)),
            Value = Convert.ToString(value(t)),
            Selected = selectedItem != null ? selectedItem(t) : false
        });
    }
}

毋庸置疑,这是非常简单并且完成同样的事情(并且在属性路径不简单的情况下实际上更加健壮,因为Jakub的解决方案不适用于嵌套属性)。

(这不是一个真正的答案,我将其作为社区维基发布,只是为了帮助阐述一点)

答案 1 :(得分:1)

控制器是填充视图模型的理想场所。

您可以使用此扩展方法删除管道代码:

public static class EnumerableExtensions
{
    public static IEnumerable<SelectListItem> ToSelectList<T, TTextProperty, TValueProperty>(this IEnumerable<T> instance, Expression<Func<T, TTextProperty>> text, Expression<Func<T, TValueProperty>> value, Func<T, bool> selectedItem = null)
    {
        return instance.Select(t => new SelectListItem
        {
            Text = Convert.ToString(text.ToPropertyInfo().GetValue(t, null)),
            Value = Convert.ToString(value.ToPropertyInfo().GetValue(t, null)),
            Selected = selectedItem != null ? selectedItem(t) : false
        });
    }

    public static PropertyInfo ToPropertyInfo(this LambdaExpression expression)
    {
        MemberExpression body = expression.Body as MemberExpression;

        if (body != null)
        {
            PropertyInfo member = body.Member as PropertyInfo;
            if (member != null)
            {
                return member;
            }
        }

        throw new ArgumentException("Expression is not a Property");
    }
}

model.Roles = context.Roles.ToSelectList(r => r.RoleID, r => r.Description);