winforms,dotnet2,vb,llblgen 2.6,adapter
Not sure if my scenario is the same.
I want to merge 2 collections(A and B).
Want to merge B into A collection.
- If Item in B not in A then Add it. (easy using the code below)
- If item in B exists in A then compare DateModified and replace DateModified is different.
Step 1. Code
oIssues.DoNotPerformAddIfPresent = True
For Each oIssue As VwIssuesEntity In oFetchIssues
oIssues.Add(oIssue)
Next
Step 2....how do i achieve this?