Is it possible to use a DatasetController without SmartBusinessEntityAdapter?
What my use case is I am using a DasetModel class to fetch some data from the backend. I then want to manipulate those records on the client but not save back to the backend. If my datasetmodel class is running with DatasetModelModeEnum:Connected then my SaveChanges will write back to the backend.
Maybe there is an easier way. I simply need to find those fetched records in the dataset model class and updated them for later use on the client.