■ UnitOfWork 클래스의 CommitChanges 메소드를 사용해 데이터를 추가하는 방법을 보여준다.
▶ 예제 코드 (C#)
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
using DevExpress.Xpo; /// <summary> /// 제품 데이터 객체 /// </summary> public class ProductDataObject : XPObject { //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// 제품명 /// </summary> private string productName; /// <summary> /// 단가 /// </summary> private int unitPrice; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Public #region 제품명 - ProductName /// <summary> /// 제품명 /// </summary> public string ProductName { get { return this.productName; } set { SetPropertyValue<string>("ProductName", ref this.productName, value); } } #endregion #region 단가 - UnitPrice /// <summary> /// 단가 /// </summary> public int UnitPrice { get { return this.unitPrice; } set { SetPropertyValue<int>("UnitPrice", ref this.unitPrice, value); } } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - ProductDataObject() /// <summary> /// 생성자 /// </summary> public ProductDataObject() : base() { } #endregion #region 생성자 - ProductDataObject(session) /// <summary> /// 생성자 /// </summary> /// <param name="session">Session 객체</param> public ProductDataObject(Session session) : base(session) { } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성 후 처리하기 - AfterConstruction() /// <summary> /// 생성 후 처리하기 /// </summary> public override void AfterConstruction() { base.AfterConstruction(); } #endregion } ... // ProductDataObject 타입의 데이터가 존재하는지 조사한다. if(Session.DefaultSession.FindObject<ProductDataObject>(null) != null) { return; } // 2건의 ProductDataObject를 생성해 추가한다. using(UnitOfWork unitOfWork = new UnitOfWork()) { ProductDataObject productDataObject1 = new ProductDataObject(unitOfWork) { ProductName = "Product A", UnitPrice = 99 }; ProductDataObject productDataObject2 = new ProductDataObject(unitOfWork) { ProductName = "Product B", UnitPrice = 199 }; unitOfWork.CommitChanges(); } |