我查看了整个互联网,但仍然找不到解决方案。
我尝试了附加方法:
public static void updatePhoto(string name, string albumName, string newName, string newPath)
{
//updates photo... no delete and adding...
var photo = new Image(){Label=newName, Path = newPath};
using (var db = new EzPrintsEntities())
{
db.Images.Attach(photo);
db.SaveChanges();
}
}
但这根本没有做任何事情。
那么问题来了,如何在下面的代码中通过 EF 实现对 sql 数据库的 UPDATE?
public static void updatePhoto(string name, string albumName, string newName, string newPath)
{
EzPrintsEntities db = new EzPrintsEntities();
}