我正在创建一个应用程序来将学生信息保存到 SQL 中,我想知道如何使用实体框架将图像从 WPF 中的图像控件插入到 SQL 数据库
我制作了将图像上传到图像控件的事件,现在我需要使用实体框架将其保存到 sql 数据库
图片加载按钮代码:
private void uploadbt_Click(object sender, RoutedEventArgs e)
{
OpenFileDialog op = new OpenFileDialog();
op.Title = "Select a picture";
op.Filter = "All supported graphics|*.jpg;*.jpeg;*.png|" +
"JPEG (*.jpg;*.jpeg)|*.jpg;*.jpeg|" +
"Portable Network Graphic (*.png)|*.png";
if (op.ShowDialog() == true)
{
photo.Source = new BitmapImage(new Uri(op.FileName));
}
}
这是我的名为 cv 的数据库
这是我将一些信息保存到数据库中的代码 这个用于保存按钮
facultymakerEntities1 entity = new facultymakerEntities1();
cv CV = new cv();
CV.Full_Name = fullnametb.Text;
CV.Activities = activitestb.Text;
CV.Address = addresstb.Text;
CV.Birth_Day = bddate.SelectedDate.Value;
CV.Courses = cousetb.Text;
CV.E_Mail = emailtb.Text;
entity.cvs.Add(CV);
entity.SaveChanges();
如何将图像控件中的图像保存到数据库中?
谢谢;