Features:
1- Automatic bindings between tables with a few lines.
2- Manual field bindings with the method Bind.
3- Ignore automatic bindings with the method Ignore.
Download:
Xpo for Ax 2012
Xpo for Ax 2009 (soon)
1- Automatic bindings between tables with a few lines.
2- Manual field bindings with the method Bind.
3- Ignore automatic bindings with the method Ignore.
Download:
Xpo for Ax 2012
Xpo for Ax 2009 (soon)
To learn how to use it read the test class and the following
example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TableMapper mp = new TableMapper(); | |
TestTable1 tb1; | |
TestTable2 tb2; | |
; | |
mp.MapTable(tb1, tb2) | |
.Bind("Int2", "SomeInt") | |
.Bind("Name","FullName") | |
.Bind("Url", "Web") | |
.Ignore("Utc") | |
.Map(); |