Adding a Database to an Existing PowerApps Environment

…click Create my Database: You will see “provisioning database”: Once complete, it will look like below: Go to https://make.powerapps.com/. Select the environment, and you will see the entities installed:  …

How to Use Azure Notebooks Hello World

Azure Notebooks are Jupyter notebooks running on Azure, which is great as users don’t need to install any software locally, and it comes with other cool features as well. To…

How to Get the Workspace GroupId and DataSetId from the URL in Power BI

…https://app.powerbi.com/groups/ade7c4e4-1bdd-4472-8aa5-744febb1c8e6/list/dashboards?ctid=e6cca260-b075-4884-bc8e-54b7349f1f42, with the GroupId next to /groups/: To get a DataSetId, click on a Data Set. The URL looks something like https://app.powerbi.com/groups/ade7c4e4-1bdd-4472-8aa5-744febb1c8e6/datasets/8ca80576-866c-4a1b-af6f-e6c4a0004703?ctid=e6cca260-b075-4884-bc8e-54b7349f1f42, with the DataSetId next to the /datasets/:  …

Dynamics 365 Using EntityReference to Get Name from Id

…code is below: try { var connectionString = @”AuthType = Office365; Url = https://yourinstance.crm.dynamics.com/;Username=user@test.com;Password=yourpassword”; CrmServiceClient conn = new CrmServiceClient(connectionString); IOrganizationService service = (IOrganizationService)conn.OrganizationWebProxyClient != null ? (IOrganizationService)conn.OrganizationWebProxyClient : (IOrganizationService)conn.OrganizationServiceProxy; EntityCollection…