AzureWebFarm.Storage.SyncStatusRepository.RetrieveSyncStatus C# (CSharp) Method

RetrieveSyncStatus() public method

public RetrieveSyncStatus ( string webSiteName ) : IEnumerable
webSiteName string
return IEnumerable
        public IEnumerable<SyncStatus> RetrieveSyncStatus(string webSiteName)
        {
            return _table.Query
                .Where(
                    s =>
                    s.PartitionKey.Equals(AzureRoleEnvironment.DeploymentId(), StringComparison.OrdinalIgnoreCase) &&
                    s.SiteName.Equals(webSiteName, StringComparison.OrdinalIgnoreCase))
                .ToList()
                .Select(s => s.ToModel());
        }