I am trying to read values form my database. But why am I getting only values with no column name? this is my controller. that returns the values in JSON
SqlCommand cmd = con.CreateCommand();
cmd.CommandText = "SELECT DISTINCT State FROM MyDBtable";
con.Open();
List<string> StateList = new List<string>();
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
StateList.Add(reader[0].ToString());
}
return Json(new
{
myTable = StateList
}, JsonRequestBehavior.AllowGet);
and this is my JSON
{"myTable":["VA","CA"]}
Where as, it's suppose to give me
{"myTable":[{"State":"VA"},{"State":"CA"}]}
Why is it not reading and printing State
StateList.Add(reader[0].ToString());is adding just the state string and no longer theStateproperty. – Tom Wijsman Nov 15 '12 at 19:43StateList is a list of strings, I want it to be a list of properties, how do I do that?. If you ever have a problem in much longer or harder code, that will definitely help us help you. Just an intermezzo, don't mind it... :) – Tom Wijsman Nov 15 '12 at 20:06