Click here to Skip to main content
15,888,803 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to check duplicate records in the database before inserting using linq in vb.net

for example I have a table of general_categories, consists of cat_id and categories

when i click save to vb.net there will pop up message says that their is duplicate

records found when the file you want to save is existing..........
Posted

1 solution

I think this is very basic engineering solution that your are trying .

Read this all link as I found this to be very helpful to understand basic functionality of LinQ .

http://msdn.microsoft.com/en-us/vstudio/bb688088.aspx[^]


Apart from this I would like to give solution for your issue not in the form of code but in the form of algorithm.
1) Connect the database
2) Use that connection to run LinQ Query
3) Declare one variable which will store YES/NO for result
4) Write SELECT query to find out the data in table If exists query will return YES otherwise NO
5) Make use of this condition to process further request.


Hope this helps , If yes then plz accept and vote the answer. Any queries / questions on this are always welcome.

Thanks & Regards
RDBurmon.Sr.Software Engineer
 
Share this answer
 

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