I am trying to use LinqDataSource instead of using the SQL dataset.
Currently, if I want to update my GridView, I just declare a
DataSet ds = new DataSet();
then I
adapter.Fill(ds);
GridView.DataSource = ds;
GridView.DataBind();
What is the equivalent code using LinqDataSource to update my GridView? Thanks.