![]() |
VOOZH | about |
Microsoft Entity Framework serves as an object-relational mapping framework for working with data represented as objects. Although Visual Studio offers the ADO.NET Entity Data Model wizard to automatically generate the Entity Model, this model-first approach may present challenges when your data source undergoes changes or when you require greater control over entity operations. In this article, we will delve into the code-first approach for accessing Adobe Analytics data through the CData ADO.NET Provider, providing you with more flexibility and control.
Modify the App.config file in the project to add a reference to the Adobe Analytics Entity Framework 6 assembly and the connection string.
Adobe Analytics uses the OAuth authentication standard. To authenticate using OAuth, create an app to obtain the OAuthClientId, OAuthClientSecret, and CallbackURL connection properties. See the "Getting Started" section of the help documentation for a guide.
GlobalCompanyId is a required connection property. If you do not know your Global Company ID, you can find it in the request URL for the users/me endpoint on the Swagger UI. After logging into the Swagger UI Url, expand the users endpoint and then click the GET users/me button. Click the Try it out and Execute buttons. Note your Global Company ID shown in the Request URL immediately preceding the users/me endpoint.
Report Suite ID (RSID) is also a required connection property. In the Adobe Analytics UI, navigate to Admin -> Report Suites and you will get a list of your report suites along with their identifiers next to the name.
After setting the GlobalCompanyId, RSID and OAuth connection properties, you are ready to connect to Adobe Analytics.
<configuration> ... <connectionStrings> <add name="AdobeAnalyticsContext" connectionString="Offline=False;GlobalCompanyId=myGlobalCompanyId; RSID=myRSID; OAuthClientId=myOauthClientId; OauthClientSecret=myOAuthClientSecret; CallbackURL=myCallbackURL;" providerName="System.Data.CData.AdobeAnalytics" /> </connectionStrings> <entityFramework> <providers> ... <provider invariantName="System.Data.CData.AdobeAnalytics" type="System.Data.CData.AdobeAnalytics.AdobeAnalyticsProviderServices, System.Data.CData.AdobeAnalytics.Entities.EF6" /> </providers> <entityFramework> </configuration> </code>
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;
class AdobeAnalyticsContext : DbContext {
public AdobeAnalyticsContext() { }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
// To remove the requests to the Migration History table
Database.SetInitializer<AdobeAnalyticsContext>(null);
// To remove the plural names
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
}
using System.Data.Entity.ModelConfiguration;
using System.ComponentModel.DataAnnotations.Schema;
[System.ComponentModel.DataAnnotations.Schema.Table("AdsReport")]
public class AdsReport {
[System.ComponentModel.DataAnnotations.Key]
public System.String Page { get; set; }
public System.String PageViews { get; set; }
}
public DbSet<AdsReport> AdsReport { set; get; }
AdobeAnalyticsContext context = new AdobeAnalyticsContext(); context.Configuration.UseDatabaseNullSemantics = true; var query = from line in context.AdsReport select line;
Download a free trial of the Adobe Analytics Data Provider to get started:
Download NowLearn more:
👁 Adobe Analytics IconRapidly create and deploy powerful .NET applications that integrate with Adobe Analytics data including Metrics, Users, Reports, Segments, and more!