I know how to add a dataset to a session
Dataset ds = GetResults();
Session["xyz "] = ds;
Is there a way I can append a dataset to a session ?
I am trying to do something like
Session["xyz"] = ds + ds1; //ds1 is another dataset
or Session["xyz"] = ds + (Dataset)Session["xyz"];
It throws an error .. is there a way to do it ?