SELECT ID,PAYMENT_RECEIVE_DATE
FROM PAYMENT_DETAILS
WHERE P_ID IN( '23','2','2','4','5','7' )
I have to dynamic fill values of P_ID.My main PROBLEM is that P_ID can up to 100 or more or can be 2 or 3 ,i do not want to fill through array .
i do not want to use array[200].
Plaese suggest me solution...so that i fill P_ID ....
Thanks in advance
Loading

VulpesPosted Mar 22, 2014, 9:58 AM
With the help of a bit of LINQ you can then easily build your SQL query:
//....
Sompal AryaPosted Mar 22, 2014, 2:07 PM