Functions/Query/Views/Get-CdsViews.ps1
<#
.SYNOPSIS Retrieve savedquery records #> function Get-CdsViews { [CmdletBinding()] param ( [Parameter(Mandatory = $false, ValueFromPipeline)] [Microsoft.Xrm.Tooling.Connector.CrmServiceClient] $CdsClient = $Global:CdsClient, [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [String] $EntityLogicalName, [Parameter(Mandatory = $false)] [ValidateNotNullOrEmpty()] [String[]] $Columns = @("*") ) begin { $StopWatch = [System.Diagnostics.Stopwatch]::StartNew(); Trace-CdsFunction -Name $MyInvocation.MyCommand.Name -Stage Start -Parameters ($MyInvocation.MyCommand.Parameters); } process { $queryViews = New-CdsQueryExpression -LogicalName "savedquery" -Columns $Columns; if ($PSBoundParameters.ContainsKey('EntityLogicalName')) { $queryViews = $queryViews | Add-CdsQueryCondition -Field "returnedtypecode" -Condition Equal -Values $EntityLogicalName; } $views = $CdsClient | Get-CdsMultipleRecords -Query $queryViews; $views; } end { $StopWatch.Stop(); Trace-CdsFunction -Name $MyInvocation.MyCommand.Name -Stage Stop -StopWatch $StopWatch; } } Export-ModuleMember -Function Get-CdsViews -Alias *; |