интернет магазине, и мне необходимо чтобы значение Count было кратно 0,5, Я могу это так отобразить? public class ShoppingCart
{
public ShoppingCart()
{
Count = 0.5;
}
public int Id { get; set; }
public string ApplicationUserId { get; set; }
[NotMapped]
[ForeignKey("ApplicationUserId")]
public virtual ApplicationUser ApplicationUser { get; set; }
public int MenuItemId { get; set; }
[NotMapped]
[ForeignKey("MenuItemId")]
public virtual MenuItem MenuItem { get; set; }
[Range(0.5, double.MaxValue, ErrorMessage ="Please enter a value greater than or equal to{0.5}")]
public double Count { get; set; }
}
class whatever { public float getCount() { count += step; return count; } private float count = 0; private const float step = 0.5f; }
Обсуждают сегодня