各製品の資料を入手。
詳細はこちら →CData
こんにちは!ウェブ担当の加藤です。マーケ関連のデータ分析や整備もやっています。
Entity Framework はobject-relational mapping フレームワークで、データをオブジェクトとして扱うために使われます。Visual Studio のADO.NET Entity Data Model ウィザードを実行するとEntity Model を作成できますが、このモデルファーストアプローチでは、データソースに変更があった場合やエンティティ操作をより制御したい場合は不都合があります。この記事では、CData ADO.NET Provider を使いコードファーストアプローチでHBase にアクセスします。
Apache HBase への接続には、Port およびServer を設定します。
<configuration>
... <connectionStrings>
<add name="ApacheHBaseContext" connectionString="Offline=False;Server=127.0.0.1;Port=8080;" providerName="System.Data.CData.ApacheHBase" />
</connectionStrings>
<entityFramework>
<providers>
... <provider invariantName="System.Data.CData.ApacheHBase" type="System.Data.CData.ApacheHBase.ApacheHBaseProviderServices, System.Data.CData.ApacheHBase.Entities.EF6" />
</providers>
<entityFramework>
</configuration>
</code>
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;
class ApacheHBaseContext :DbContext {
public ApacheHBaseContext() { }
protected override void OnModelCreating(DbModelBuilder modelBuilder) { // To remove the requests to the Migration History table
Database.SetInitializer<ApacheHBaseContext>(null); // To remove the plural names modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
}
using System.Data.Entity.ModelConfiguration;
using System.ComponentModel.DataAnnotations.Schema;
public class Customers {
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public System.String Id { get; set; }
public System.String CustomerName { get; set; }
}
public class CustomersMap :EntityTypeConfiguration<Customers> {
public CustomersMap() {
this.ToTable("Customers");
this.HasKey(Customers => Customers.Id);
this.Property(Customers => Customers.CustomerName);
}
}
public DbSet<Customers> Customers { set; get; }
ApacheHBaseContext context = new ApacheHBaseContext();
context.Configuration.UseDatabaseNullSemantics = true;
var query = from line in context.Customers select line;