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