Can someone tell me why I would use a query adapter within the dataset designer instead of adding queries to the table adapter?
Regards
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Sometimes your queries do not need to be associated with an actual DataTable. Perhaps you have a Query that is logically grouped within your DataSet, but has no real backing store.
For Instance, suppose you wanted to call a stored procedure that safely deletes all associated records for a given customer:
This really doesn’t belong to any one particular entity as it might span multiple tables, but still belongs in your CustomerDataSet.