microsoft / microsoft/powerbi-powershell
Get-PowerBIDataset-Name does not filter accordingly
Nobody has claimed this yet.
- Dominant language
- C#
- Stars
- 413
- Forks
- 134
- Avg merge
- 33m
- Merged PRs (30d)
- 1
Description
We are using v1.0.487.
We are facing an issue that Get-PowerBIDataset is not respecting the -Name filter.
Executing the following shows all datasets of the workspace
> Get-PowerBIDataset -WorkspaceId "7389acd3-37fa-xxx" -Name "xxx"
To work arround this issues we are using:
> Get-PowerBIDataset -WorkspaceId "7389acd3-37fa-xxx" | Where-Object {$_.Name -eq "xxx"}
Please fix the command let.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reproducing the Get-PowerBIDataset command with a workspace ID and -Name value, then inspect the cmdlet's handling of that parameter. The work is done when the command returns only the dataset matching -Name while preserving the existing workspace behavior.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- powershell
- Domain
- cli
- Issue type
- Bug
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100