[C#/COMMON/NMEMORY/.NET6] Transaction 클래스 : Create 메소드를 사용해 트랜잭션 설정하기
■ Transaction 클래스의 Create 메소드를 사용해 트랜잭션을 설정하는 방법을 보여준다. ▶ Member.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
namespace TestProject; /// <summary> /// 회원 /// </summary> public class Member { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region ID - ID /// <summary> /// ID /// </summary> public int ID { get; set; } #endregion #region 성명 - Name /// <summary> /// 성명 /// </summary> public string Name { get; set; } #endregion #region 그룹 ID - GroupID /// <summary> /// 그룹 ID /// </summary> public int? GroupID { get; set; } #endregion } |
▶ Program.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
using System.Transactions; using NMemory; using NMemory.Tables; namespace TestProject; /// <summary> /// 프로그램 /// </summary> class Program { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 프로그램 시작하기 - Main() /// <summary> /// 프로그램 시작하기 /// </summary> private static void Main() { Database database = new Database(); Table<Member, int> memberTable = database.Tables.Create<Member, int>(member => member.ID, null); CommittableTransaction committableTransaction = new CommittableTransaction(); NMemory.Transactions.Transaction transaction = NMemory.Transactions.Transaction.Create(committableTransaction); try { memberTable.Insert(new Member() { ID = 1, Name = "김철수" }, transaction); memberTable.Insert(new Member() { ID = 2, Name = "홍길동" }, transaction); memberTable.Insert(new Member() { ID = 3, Name = "홍삼수" }, transaction); memberTable.Insert(new Member() { ID = 4, Name = "김영희" }, transaction); memberTable.Insert(new Member() { ID = 5, Name = "이주희" }, transaction); //throw new Exception(); committableTransaction.Commit(); } catch { committableTransaction.Rollback(); } foreach(Member member in memberTable) { Console.WriteLine($"{member.ID}, {member.Name}"); } } #endregion } |
TestProject.zip