Repo1 という名前の Azure Repos Git リポジトリと、Fabric 対応の Microsoft Power BI Premium 容量があります。この容量には、Workspace! と Workspace2 という名前の 2 つのワークスペースが含まれています。Git 統合はワークスペース レベルで有効化されています。 Microsoft Power BI Desktop と Workspace! を使用して、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.