Are your creating a SqlDataAdapter in your winform designer and then
right clicking and generating a data set from that data adapter? If yes
and the Select SQL in you adapter looks something like this:
SELECT FirstName, LastName, [Authorization] FROM ABC
The the generated data set will contain the following columns
FirstName, LastName, Authorization.
Dont worry about the [] being removed in the data set schema as when
you run the SQL statement the columns returned are:
FirstName, LastName, Authorization. the '[]' is to tell the sql query
parser to select a column with the exact name, and not a reserved
keyword.
If your doing something else, please explain the steps.
NuTcAsE