EF does not offer such a display.
, :
public class Role
{
public int RoleID { get; set;}
public virtual IList<RoleAction> Actions { get; set; }
}
public class RoleAction
{
public int ActionId { get; set; }
public string Action { get; set; }
public virtual Role { get; set; }
}
Role , IEnumerable<string>, Actions.
, M: N Role Action.