Skip to content

Instantly share code, notes, and snippets.

@elranu
Created January 21, 2013 14:42
Show Gist options
  • Save elranu/4586542 to your computer and use it in GitHub Desktop.
Save elranu/4586542 to your computer and use it in GitHub Desktop.
TableMapper: Automatic Table Mapper for Dynamics Ax http://ranu.com.ar Example
TableMapper mp = new TableMapper();
TestTable1 tb1;
TestTable2 tb2;
;
mp.MapTable(tb1, tb2)
.Bind("Int2", "SomeInt")
.Bind("Name","FullName")
.Bind("Url", "Web")
.Ignore("Utc")
.Map();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment