8ea1964757 | ||
---|---|---|
.Net Framework | ||
.github | ||
Images | ||
.gitignore | ||
CHANGELOG.md | ||
CODE_OF_CONDUCT.md | ||
CONTRIBUTING.md | ||
LICENSE | ||
README.md | ||
SECURITY.md | ||
SUPPORT.md |
README.md
#Please note we are also targeting base json library in .net core going forward
JsonToJsonMapper
AutoMapper works on JSON format to exchange information between systems. It enables transformation of data from one canonical schema to another and allows integration of different SaaS applications through orchestration. Following are some of the capabilities that Automapper currently supports:
- Transformation from a flat type to flat/complex type.
- Transformation from a complex type to flat/complex type.
- Allows execution of CSharp script through Roslyn for complex transformation.
- Supports JArray
- Supports transformation of values from one datatype to another.
- Data type validation
Following are the handlers currently supported by the tool
Transpose
- Key
- Value
- PrependText
Type converter
- Primitive data types
- JObject
- Jarray
- DateTime Formatting and Timezone
- Nullable int, guid and decimal
Roslyn Script
- Script
- Params
- Execution
Value Mapping
- Params
Function Handler
- Concatenation
- Replace value
- Split
- ToUpper
- ToLower
Example
Source Json
{
"result": [
{
"id": 2,
"leadId": 6,
"activityDate": "2013-09-26T06:56:35+0000",
"activityTypeId": 12,
"attributes": [
{
"name": "Source Type",
"value": "Web page visit"
},
{
"name": "Source Info",
"value": "https://www.bing.com/"
}
]
}
]
}
Expeced output
{
"Content": [
{
"leadId": 6,
"Source Type": "Web page visit",
"Source Info": "https://www.bing.com/"
}
]
}
Mapping config
{
"MappingRuleConfig": {
"TruthTable": [
{
"DestinationColumn": "ContentJSON",
"ComplexType": {
"DataType": "JArray",
"Node": "$.result[*]",
"TruthTable": [
{
"SourceColumn": "$.leadId",
"DestinationColumn": "leadId",
"DataType": "long"
},
{
"SourceColumn": "$.attributes[*]",
"DataType": "JArray",
"TransformValue": {
"Type": "PromoteArrayToProperty",
"KeyLookupField": "$.name",
"ValueLookupField": "$.value"
}
}
]
}
]
}
}
Contributing
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
When you submit a pull request, a CLA bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Code of Conduct
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
Trademarks
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft's Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party's policies.