各製品の資料を入手。
詳細はこちら →CData
こんにちは!ウェブ担当の加藤です。マーケ関連のデータ分析や整備もやっています。
Entity Framework はobject-relational mapping フレームワークで、データをオブジェクトとして扱うために使われます。Visual Studio のADO.NET Entity Data Model ウィザードを実行するとEntity Model を作成できますが、このモデルファーストアプローチでは、データソースに変更があった場合やエンティティ操作をより制御したい場合は不都合があります。この記事では、CData ADO.NET Provider を使いコードファーストアプローチでBigQuery にアクセスします。
Google BigQuery はOAuth 認証標準を使用します。個々のユーザーとしてGoogle API にアクセスするには、組み込みクレデンシャルを使うか、OAuth アプリを作成します。
OAuth では、Google Apps ドメインのユーザーとしてサービスアカウントを使ってアクセスすることもできます。サービスカウントでの認証では、OAuth JWT を取得するためのアプリケーションを登録する必要があります。
OAuth 値に加え、DatasetId、ProjectId を設定する必要があります。詳細はヘルプドキュメントの「はじめに」を参照してください。
<configuration>
... <connectionStrings>
<add name="GoogleBigQueryContext" connectionString="Offline=False;DataSetId=MyDataSetId;ProjectId=MyProjectId;" 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;
public class Orders {
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public System.String Id { get; set; }
public System.String OrderName { get; set; }
}
public class OrdersMap :EntityTypeConfiguration<Orders> {
public OrdersMap() {
this.ToTable("Orders");
this.HasKey(Orders => Orders.Id);
this.Property(Orders => Orders.OrderName);
}
}
public DbSet<Orders> Orders { set; get; }
GoogleBigQueryContext context = new GoogleBigQueryContext();
context.Configuration.UseDatabaseNullSemantics = true;
var query = from line in context.Orders select line;