私のコードはです。
class Program
{
static NorthwindEntities context = new NorthwindEntities();
static void Main(string[] args)
{
Order updateorder = new Order() { OrderID = 10256, ShipCountry = "444", ShipCity = "tehran" };
update(updateorder);
}
static public void update(Order updateorder)
{
context.Entry<Order>(updateorder ).State = EntityState.Modified;
context.SaveChanges();
}
}
私を助けてください、私は分離されたエンティティがデータベースで変更される理由を混乱させました