I have a Dataset I get from my MySQL Databasen using a method from my WCF Service. This Dataset contains the list of the projects in my database. It's a list of the projects, displayed like this :
ID | Name
1 | Toast
(this is an example)
I want to add, in the end of the dataset, a new column, like this :
ID | Name | Status
1 | Toast | 1
I have another method that returns an int. For parameters, this method take the ID of a projet. For example, the id of Toast is 1. So I enter my method with the parameter 1. You see what I mean ?
So I have a dataset that contains this :
ID | Name
1 | Toast
and an int that contains this : 1
so, I want to add a new row, based on the ID of the project. Keep in mind I can have MANY others projects, so I need to check any row..
I don't know how to proceed... Thanks for your help.