Click here to Skip to main content
15,901,122 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to open Query Builder using c#.net
Posted
Comments
Sandeep Mewara 1-Aug-12 8:38am    
Not clear.

 
Share this answer
 
Hi Sravanthid28!
You can do something like:
C#
SQLQueryBuilder queryBuilder = new SQLQueryBuilder();
.....
String critera = "*";
queryBuilder.SetSelect("TableName", criteria);
....


I think and I hope these links help you:
http://www.c-sharpcorner.com/uploadfile/neelamiyer/querybuilder12012005042244am/querybuilder.aspx[^]
http://msdn.microsoft.com/en-us/library/bb896238.aspx[^]
http://stackoverflow.com/questions/7172008/c-sql-query-builder-class[^]

Good luck
 
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