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

isDatasetCheckedOutFor() 개인적인 메소드

private isDatasetCheckedOutFor ( System.Int64 datasetId, string username ) : bool
datasetId System.Int64
username string
리턴 bool
        private bool isDatasetCheckedOutFor(Int64 datasetId, string username)
        {
            return (DatasetRepo.Query(p => p.Status == DatasetStatus.CheckedOut && p.Id == datasetId && p.CheckOutUser == getUserIdentifier(username)).Count() == 1);
        }