BExIS.Dlm.Services.Data.DatasetManager.GetDatasetVersionProfile C# (CSharp) 메소드

GetDatasetVersionProfile() 공개 메소드

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
리턴 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;
        }