The new command text returns data with schema different from the schema of the main query. Check your query's command text if this is not desired.
I am getings this warning, when ever i add a query in a Strongly Typed DataSet
which returns a single column
Ex
`SELECT DISTINCT Building
FROM Room
ORDER BY Building
when i give this query it will show me a warning.
Because warning leads to a constraint error when ever i call the same function in a windows form
You should configure this query in your
TableAdapter
to return a scalar(single) value instead of returning rows. Otherwise theTableAdapter
tries to apply the same schema as in your main query.According to your comment:
"In addition to the standard functionality of a DataAdapter, TableAdapters provide additional typed methods that encapsulate queries that share a common schema with the associated typed DataTable. In other words, you can have as many queries as you want on a TableAdapter as long as they return data that conforms to the same schema."
You either have to create another TableAdapter with different schema(one column) or you keep returning all columns of your main-query and pick that column that you need(f.e. with the DisplayMember property of a ComboBox).