ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →CData
こんにちは!ウェブ担当の加藤です。マーケ関連のデータ分析や整備もやっています。
Entity Framework はobject-relational mapping フレームワークで、データをオブジェクトとして扱うために使われます。Visual Studio のADO.NET Entity Data Model ウィザードを実行するとEntity Model を作成できますが、このモデルファーストアプローチでは、データソースに変更があった場合やエンティティ操作をより制御したい場合は不都合があります。この記事では、CData ADO.NET Provider を使いコードファーストアプローチでQuickBooks Online にアクセスします。
QuickBooks Online への接続にはOAuth 認証標準を使います。Embedded Credentials を使用すると、接続プロパティを設定せずに接続できます。接続すると、CData 製品はデフォルトブラウザでOAuth エンドポイントを開きます。ログインして、アプリケーションにアクセス許可を与えるだけです。CData 製品がOAuth プロセスを完了します。
詳細はヘルプドキュメントを参照してください。
<configuration>
... <connectionStrings>
<add name="QuickBooksOnlineContext" connectionString="Offline=False;" providerName="System.Data.CData.QuickBooksOnline" />
</connectionStrings>
<entityFramework>
<providers>
... <provider invariantName="System.Data.CData.QuickBooksOnline" type="System.Data.CData.QuickBooksOnline.QuickBooksOnlineProviderServices, System.Data.CData.QuickBooksOnline.Entities.EF6" />
</providers>
<entityFramework>
</configuration>
</code>
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;
class QuickBooksOnlineContext :DbContext {
public QuickBooksOnlineContext() { }
protected override void OnModelCreating(DbModelBuilder modelBuilder) { // To remove the requests to the Migration History table
Database.SetInitializer<QuickBooksOnlineContext>(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 DisplayName { get; set; }
}
public class CustomersMap :EntityTypeConfiguration<Customers> {
public CustomersMap() {
this.ToTable("Customers");
this.HasKey(Customers => Customers.Id);
this.Property(Customers => Customers.DisplayName);
}
}
public DbSet<Customers> Customers { set; get; }
QuickBooksOnlineContext context = new QuickBooksOnlineContext();
context.Configuration.UseDatabaseNullSemantics = true;
var query = from line in context.Customers select line;