У меня есть класс модели,
public class CustomerModel
{
public int CustomerId { get; set; }
public string CustomerName { get; set; }
public int CustomerPoints { get; set; }
}
В методе контроллера
public ActionResult Index()
{
return View(db.Customers.ToList());
}
В столбце CustomerPoints
я получаю целое число. Я хочу отобразить удобное сообщение для этого поля. Например,
If CustomerPoints value < 10 then bronze
CustomerPoints value >10 && < 20 silver
CustomerPoints value >20 && < 30 gold
CustomerPoints value >30 && < 40 diamond
Как я могу это сделать? Пожалуйста, помогите, я новичок в платформе MVC. Спасибо.