Repo1 という名前の Azure Repos Git リポジトリと、ファブリック対応の Microsoft Power Bl Premium 容量があります。この容量には、「Workspace!」という名前の 2 つのワークスペースが含まれています。とワークスペース2。 Git 統合はワークスペース レベルで有効になります。 Microsoft Power Bl デスクトップとワークスペースを使用する予定です。 Repo1 に保存されているセマンティック モデルにバージョン管理された変更を加えます。変更は、Azure Pipelines を使用して Workspace2 に構築およびデプロイされます。 レポートとセマンティック モデルの定義がフォルダー階層内の個別のテキスト ファイルとして保存されていることを確認する必要があります。ソリューションでは、開発とメンテナンスの労力を最小限に抑える必要があります。 どのファイル形式で変更を保存する必要がありますか?
正解:C
When working with Power BI Desktop and Git integration for version control, report and semantic model definitions should be saved in the PBIX format. PBIX is the Power BI Desktop file format that contains definitions for reports, data models, and queries, and it can be easily saved and tracked in a version-controlled environment. The solution should minimize development and maintenance effort, and saving in PBIX format allows for the easiest transition from development to deployment, especially when using Azure Pipelines for CI/CD (continuous integration/continuous deployment) practices. References: The use of PBIX files with Power BI Desktop and Azure Repos for version control is discussed in Microsoft's official Power BI documentation, particularly in the sections covering Power BI Desktop files and Azure DevOps integration.