public class User
{
public int Id { get; set; }
public string Username { get; set; }
public byte[] PasswordHash { get; set; }
public byte[] PasswordSalt { get; set; }
public string GenderType { get; set; }
public DateTime DOB { get; set; }
public string KnownAs { get; set; }
public DateTime CreatedDate { get; set; }
public DateTime LastActive { get; set; }
public string Introduction { get; set; }
public string FieldOfInterests { get; set; }
}
Я попытался "сделать tnet ef migrations add -IgnoreChanges ExtendedUserClass". но он говорит "Нераспознанный параметр '-IgnoreChanges'". Это в VSCode.