web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :

Insert method using unit of work pattern in ax 2012

Abdel Fatah Ahmed Profile Picture Abdel Fatah Ahmed
public static server  void insertintocusttableusingUOWClass()
{
     UnitOfWork uow = new UnitOfWork();
    CustTable           custTable;  
    ;
    custTable.AccountNum='12347';
    custTable.CustGroup='pat';
    uow.insertonSaveChanges(custTable);
     uow.saveChanges();

}

Comments

*This post is locked for comments