[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int AdminID { get; set; }
public string Email { get; set; }
public string Name { get; set; }
public string Passwort { get; set; }
public DateTime ErstelltAm { get; set; }
The table is constructed almost correct but the primary key is not auto incremented. How do i fix this?