BExIS.Dlm.Services.Data.DatasetManager.GetDatasetVersionProfile C# (CSharp) Method

GetDatasetVersionProfile() public method

reports what changes have been done by the version specified by versionId. Deletions, updates, new records, and changes in the dataset attributes are among the reported items.
public GetDatasetVersionProfile ( System.Int64 versionId ) : object
versionId System.Int64
return object
        public object GetDatasetVersionProfile(Int64 versionId)
        {
            /// get the latest version from the Versions property, or run a direct query on the db
            /// get the latest version by querying Tuples table for records with version <= latest version
            ///
            return null;
        }