Please help me out to if changes required in my code.
I am using below below Code
From t1 In Applied.AsEnumerable() _
Join t2 In Paid.AsEnumerable() _
On t1.Field(Of Integer)(“ProposalNo”) Equals _
t2.Field(Of Integer)(“Proposal No”) _
Select New With _
{ _
.Paid=t1.Field(Of Integer)(“ProposalNo”)
};