Click here to Skip to main content
15,879,326 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,


This is my DataTable

Id       Item_Id
100       1
100       2


This is my DataTable here i want to check the condition.

for ex:

again i try to insert 100 (id) ,1(item_Id).Data has not to be inserted.
Id       Item_Id
100       1
100       2
100       1 ( not inserted)


can any one help me to solve this issue...


Thanks in advance....
Posted
Updated 2-Oct-12 22:14pm
v2

u did not explain your table structure .if Item_Id column is primary or u unique then u cant insert same Item_Id again .what error u r getting can u explain ?
 
Share this answer
 
Comments
[no name] 3-Oct-12 4:13am    
datatable is temprory datatable
solanki.net 3-Oct-12 4:50am    
can u show the code ?
you can make Id and Item_Id as a composite key. In case if you try to insert the same records then the SQL Server won't allow to insert and give Exception.


Thanks
 
Share this answer
 
Comments
[no name] 3-Oct-12 4:37am    
my 5

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900