我想更新LINQ to SQL中的一列。我的查詢是這樣的: -更新LINQ to SQL的操作
private void UpdateCourse()
{
OperationDataContext OdContext = new OperationDataContext();
//Get Single course which need to update
COURSE objCourse = OdContext.COURSEs.Single(course => course.course_name == "B.Tech");
//Field which will be update
objCourse.course_desc = "Bachelor of Technology";
// executes the appropriate commands to implement the changes to the database
OdContext.SubmitChanges();
}
我的問題是第一次從符合條件的課程記錄它比它更新它。這是正確的方法?或者SP是正確的解決方案。
建議!
這可能會幫助你:http://www.codeproject.com/Articles/358445/Most-efficient-way-to-update-with-LINQ-to-SQL –