Created
March 2, 2018 13:45
-
-
Save dalenewman/d010b411ad79fbf634e7836a31eea232 to your computer and use it in GitHub Desktop.
a transformalize arrangement demonstrating the bogus provider
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
<cfg name="Bogus"> | |
<connections> | |
<add name="input" provider="bogus" seed="1" /> | |
</connections> | |
<entities> | |
<add name="Contact" size="5"> | |
<fields> | |
<add name="Identity" type="int" /> | |
<add name="FirstName" /> | |
<add name="LastName" /> | |
<add name="Email" /> | |
<add name="Phone" format="(###)###-####" /> | |
<add name="Stars" type="byte" min="1" max="5" /> | |
<add name="Recent" alias="LastSeen" type="datetime" /> | |
</fields> | |
</add> | |
</entities> | |
</cfg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment