Skip to content

Instantly share code, notes, and snippets.

@bhdryrdm
Created December 25, 2017 22:34
Show Gist options
  • Save bhdryrdm/25c7bc17035895631c3981bbef7b3ae5 to your computer and use it in GitHub Desktop.
Save bhdryrdm/25c7bc17035895631c3981bbef7b3ae5 to your computer and use it in GitHub Desktop.
[TestMethod]
public void Update()
{
University university = new University();
Department willBeUpdatingDepartment = university.Department.FirstOrDefault(x => x.DepartmentID == 1);
willBeUpdatingDepartment.DepartmentName = "UpdatingDepartment";
university.Department.Update(willBeUpdatingDepartment);
university.PushToDB();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment