![]() |
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 BigQuery data through the CData ADO.NET Provider, providing you with more flexibility and control.
CData simplifies access and integration of live Google BigQuery data. Our customers leverage CData connectivity to:
Most CData customers are using Google BigQuery as their data warehouse and so use CData solutions to migrate business data from separate sources into BigQuery for comprehensive analytics. Other customers use our connectivity to analyze and report on their Google BigQuery data, with many customers using both solutions.
For more details on how CData enhances your Google BigQuery experience, check out our blog post: https://www.cdata.com/blog/what-is-bigquery
Modify the App.config file in the project to add a reference to the BigQuery Entity Framework 6 assembly and the connection string.
Google uses the OAuth authentication standard. To access Google APIs on behalf of individual users, you can use the embedded credentials or you can register your own OAuth app.
OAuth also enables you to use a service account to connect on behalf of users in a Google Apps domain. To authenticate with a service account, register an application to obtain the OAuth JWT values.
In addition to the OAuth values, specify the DatasetId and ProjectId. See the "Getting Started" chapter of the help documentation for a guide to using OAuth.
<configuration> ... <connectionStrings> <add name="GoogleBigQueryContext" connectionString="Offline=False;DataSetId=MyDataSetId;ProjectId=MyProjectId;InitiateOAuth=GETANDREFRESH;" providerName="System.Data.CData.GoogleBigQuery" /> </connectionStrings> <entityFramework> <providers> ... <provider invariantName="System.Data.CData.GoogleBigQuery" type="System.Data.CData.GoogleBigQuery.GoogleBigQueryProviderServices, System.Data.CData.GoogleBigQuery.Entities.EF6" /> </providers> <entityFramework> </configuration> </code>
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;
class GoogleBigQueryContext : DbContext {
public GoogleBigQueryContext() { }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
// To remove the requests to the Migration History table
Database.SetInitializer<GoogleBigQueryContext>(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("Orders")]
public class Orders {
[System.ComponentModel.DataAnnotations.Key]
public System.String OrderName { get; set; }
public System.String Freight { get; set; }
}
public DbSet<Orders> Orders { set; get; }
GoogleBigQueryContext context = new GoogleBigQueryContext(); context.Configuration.UseDatabaseNullSemantics = true; var query = from line in context.Orders select line;
Download a free trial of the Google BigQuery Data Provider to get started:
Download NowLearn more:
👁 Google BigQuery IconRapidly create and deploy powerful .NET applications that integrate with Google BigQuery data including Tables and Datasets.