Entity Framework
लेन-देन
खोज…
Database.BeginTransaction ()
एकल लेनदेन के खिलाफ कई ऑपरेशन निष्पादित किए जा सकते हैं ताकि यदि कोई भी ऑपरेशन विफल हो जाए तो परिवर्तन वापस लाया जा सके।
using (var context = new PlanetContext())
{
using (var transaction = context.Database.BeginTransaction())
{
try
{
//Lets assume this works
var jupiter = new Planet { Name = "Jupiter" };
context.Planets.Add(jupiter);
context.SaveChanges();
//And then this will throw an exception
var neptune = new Planet { Name = "Neptune" };
context.Planets.Add(neptune);
context.SaveChanges();
//Without this line, no changes will get applied to the database
transaction.Commit();
}
catch (Exception ex)
{
//There is no need to call transaction.Rollback() here as the transaction object
//will go out of scope and disposing will roll back automatically
}
}
}
ध्यान दें कि यह transaction.Rollback()
को कॉल करने के लिए डेवलपर्स का सम्मेलन हो सकता है। transaction.Rollback()
स्पष्ट रूप से, क्योंकि यह कोड को अधिक आत्म-व्याख्यात्मक बनाता है। इकाई की रूपरेखा के लिए इसके अलावा, वहाँ हो सकता है (कम अच्छी तरह से जाना जाता है) क्वेरी प्रदाताओं बाहर वहाँ है कि लागू नहीं Dipsose
सही ढंग से है, जो भी एक स्पष्ट आवश्यकता होगी transaction.Rollback()
कॉल।
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow