ModelState.IsValid zawsze zwraca false [duplikat]

To pytanie ma już odpowiedź tutaj:

ModelState.IsValid == false, dlaczego? 8 odpowiedzi
[HttpPost]
public ActionResult Create(Users user)
{
    if (ModelState.IsValid)
    {
        db.Users.Add(user);
        db.SaveChanges();
        return RedirectToAction("Index");  
    }

    return View(user);
}

ModelState.IsValid jest zawsze fałszywe.
więc po prostu przywraca widok i nowy rekord nie jest dodawany ..

Edytowa

Użytkownik

public class User
{
    public int UserID { get; set; } 
    public string Name { get; set; } 
    [Display(Name = "Confirm Password")] [DataType(DataType.Password)] 
    public string ConfirmPassword { get; set; } 
    public string Designation { get; set; } 
    [Display(Name = "Date of Join")] [DataType(DataType.Date)] public DateTime DOJ { get; set; } 
    public string Email { get; set; } 
    [Display(Name = "Phone Number")] public System.Int64 PhoneNo { get; set; }
}