I am trying to take a dataset returned from my web
service and merge it with the local SQL Server CE
table "Route_Sheets". I can't even get it to compile. I
get errors like da doesn't contain a definition
for "Fill",dbadaptor not referenced. This is what I
have. Please help. Thanks.
using System.Data;
using System.Xml;
using System.Data.SqlServerCe;
DataSet dsRemote = new DataSet();
dsRemote = ws.GetRouteSheet(2);
SqlCeConnection conn = new SqlCeConnection
(LocalStorage.ConnectionString);
SqlCeDataAdapter adapter = new SqlCeDataAdapter();
adapter.SelectCommand = new SqlCeCommand("SELECT *
FROM ROUTE_SHEETS", conn);
adapter.Fill(dsRemote);
.