操作数据
using (Model1 dbContext = new Model1())
{
DbContextTransaction trans = null;
try
{
trans = dbContext.Database.BeginTransaction();
string sql = "Update [Areas] Set Name='Dobong-gu' WHERE Id=@Id";
SqlParameter parameter = new SqlParam