github - https://github.com/Microsoft/PowerBI-Developer-Samplesから App Owns Data をダウンロードしました。次の行を追加して、行レベル セキュリティを追加しました。
generateTokenRequestParameters = new GenerateTokenRequest("View", null,
identities: new List<EffectiveIdentity>{new EffectiveIdentity(username: "username", roles: new List<string> { "Role A"}, datasets: new List<string> { report.DatasetId })});
現在、一度に追加できるユーザー名は 1 つだけです。複数のユーザーに異なる役割を割り当てる方法はありますか? どんな助けでも大歓迎です!