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 :

Delete 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;  
    ;

     select *
        from custTable
        where custTable.AccountNum == '12347';
     uow.deleteonSaveChanges(custTable);
     uow.saveChanges();

}

Comments

*This post is locked for comments