I have a sql query method using SQL data table adapters in .xsd file and need to be able to dynamically change the connection string to that method in the code behind. I can't figure out how to access the methods properties from code behind.
method is IsValidDock(), simply checks database for a particular dock number and returns bool.
basically I am instantiating the query in my code behind by
Dim SQLCommands As New SQLDataTableAdapters.SQLCommands()
I thought I could get to the properties of the method by
SQLCommands.IsValidDock(). some properties. This is not working, any ideas?
I haven't worked with sql data table adapters like this before, adding functionality to previous developers code, so bear with my ignorance. Thanks