Hi,
I have two json objects and I want to merge them into one based on a property that is common in both.
Example data:
data1 = [{
Firstname: "John",
LastName: "Henn",
JobID: 1
},{
Firstname: "Jay",
LastName: "Singh",
JobID: 2
}]
data2 = [{
ID: 1,
Title: "Application Developer"
},{
ID: 2,
Title: "Test Engineer"
}]
result= [{
Firstname: "John", LastName: "Henn", JobID: 1, Title: "Application Developer"
},{
Firstname: "Jay", LastName: "Singh", JobID: 2, Title: "Test Engineer"
}]
I have data1 and data2 in two remote text files. So I am using JSONSerializer to serialize these objects to JSON objects. Now how can I compare the two JSON objects and bring the result object in vb.net.
Since the data is already in JSON array format, is there any need to serialize the data using JSON ...
Go to the complete details ...