ADO.NET Provider for Azure Analysis Services

Build 22.0.8462

EFCore ASP.NET Application

Creating the Data Model

There are two approaches that can be taken in creating the context and entity classes for your application. With the Code-First Approach approach, you can fine-tune your model by writing the classes manually. Alternatively, you can make use of Reverse Engineering (Scaffolding) to generate these classes automatically from your Azure Analysis Services schema.

Registering the Context with Dependency Injection

In order for the MVC controller to make use of the AASContext, you'll need to register it with dependency injection. Add the following to the beginning of your Startup.cs:

using MySolutionName.Models;
using Microsoft.EntityFrameworkCore;

Next, find the ConfigureServices method in Startup.cs and add the following at the end:

var connection = @"URL=asazure://southcentralus.asazure.windows.net/server;";
services.AddDbContext<AASContext>(options => options.UseAAS(connection));

Creating a Controller and Views

To create a controller and views for your web app, follow the procedure below:

  1. Right-click the Controllers folder in the Solution Explorer and navigate to Add -> Controller...
  2. Choose MVC Controller with views, using Entity Framework, and click Add.
  3. Set the Model Class to the class corresponding to your table/view and set the Data context class to AASContext.
  4. Click Add. Note the name of the controller.

Running Your Application

Now that the controllers and views have been setup, you can launch your app using Debug -> Start Without Debugging. The app will then launch in your browser. You can find your data by navigating to <Base URL of App>/<Name of controller without the 'Controller.cs' at the end>.

Copyright (c) 2023 CData Software, Inc. - All rights reserved.
Build 22.0.8462