admin管理员组文章数量:1345083
I used the contains() and filter() array for the first time in Filter Activity of ADF dataflow and tried to find the type.code equals to 'Y' or equals 'lib'. But it didn't work. Not sure what was wrong. I appreciate any support can help me understand this.
contains(record.Organizations.authorOrganization.type,#item.code == 'Y')
|| filter(,#item == 'lib')
sampleJson:
{
"record":
{
"Organizations": {
"authorOrganization": [
{
"num": "1",
"city": "CHICAGO",
"name": "",
"type": {
"code": "Y"
}
}
]
}
},
"":["lib","dab","wsa"]
}
I used the contains() and filter() array for the first time in Filter Activity of ADF dataflow and tried to find the type.code equals to 'Y' or equals 'lib'. But it didn't work. Not sure what was wrong. I appreciate any support can help me understand this.
contains(record.Organizations.authorOrganization.type,#item.code == 'Y')
|| filter(,#item == 'lib')
sampleJson:
{
"record":
{
"Organizations": {
"authorOrganization": [
{
"num": "1",
"city": "CHICAGO",
"name": "",
"type": {
"code": "Y"
}
}
]
}
},
"":["lib","dab","wsa"]
}
Share
Improve this question
edited 20 hours ago
thichxai
asked 21 hours ago
thichxaithichxai
1,1471 gold badge8 silver badges17 bronze badges
2
- Can you provide your expected data for it? – Rakesh Govindula Commented 20 hours ago
- if conditions are match then return entire json files. – thichxai Commented 20 hours ago
2 Answers
Reset to default 0var results = record.Organizations.authorOrganization.type.code contains('Y')
You can modify your expression like below to achieve your requirement.
contains(record.Organizations.authorOrganization,#item.type.code=='Y') || contains(,#item=='lib')
Here as the authorOrganization
is an array, you need to give it in the contains()
expression and give the condition for the objects within that array.
It will give the expected results as shown below.
本文标签: Using CONTAINS() function in Azure Data Factory DataflowStack Overflow
版权声明:本文标题:Using CONTAINS() function in Azure Data Factory Dataflow - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743768390a2535665.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论