在此处输入图像描述我试图制作该应用程序并将其连接到SQL Server。但是下面的代码行有问题。
private async void Mulaitraining_Click(object sender, EventArgs e)
{
using (cbirEntities db = new cbirEntities())
{
tabel_cbir pic = new tabel_cbir() { Nama_Gambar = fileName, Gambar = ConvertImage (pictureBox1.Image)};
db.tabel_cbir.Add(pic);
await db.SaveChangesAsync();
MessageBox.Show("Tersimpan", "Message", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
并且在线运行该程序时发生错误。
await db.SaveChangesAsync();
错误消息是“ EntityValidationError”,如何解决? 任何帮助将不胜感激。谢谢。