Created
January 21, 2013 14:42
-
-
Save elranu/4586542 to your computer and use it in GitHub Desktop.
TableMapper: Automatic Table Mapper for Dynamics Ax
http://ranu.com.ar
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(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment