各製品の資料を入手。
詳細はこちら →CData
こんにちは!ウェブ担当の加藤です。マーケ関連のデータ分析や整備もやっています。
Entity Framework はobject-relational mapping フレームワークで、データをオブジェクトとして扱うために使われます。Visual Studio のADO.NET Entity Data Model ウィザードを実行するとEntity Model を作成できますが、このモデルファーストアプローチでは、データソースに変更があった場合やエンティティ操作をより制御したい場合は不都合があります。この記事では、CData ADO.NET Provider を使いコードファーストアプローチでTrello にアクセスします。
Trello は、トークンベース認証を使用して、サードパーティアプリケーションにAPI へのアクセスを許可します。ユーザーがアプリケーションにデータへのアクセスを許可すると、アプリケーションにはTrello のAPI へのリクエストに使用できるトークンが付与されます。 Trello のAPI には2通りの方法でアクセスできます。1つ目はTrello 独自の認可ルートで、2つ目はOAuth1.0 を使用する方法です。
<configuration>
... <connectionStrings>
<add name="TrelloContext" connectionString="Offline=False;APIKey=myApiKey;Token=myGeneratedToken;" providerName="System.Data.CData.Trello" />
</connectionStrings>
<entityFramework>
<providers>
... <provider invariantName="System.Data.CData.Trello" type="System.Data.CData.Trello.TrelloProviderServices, System.Data.CData.Trello.Entities.EF6" />
</providers>
<entityFramework>
</configuration>
</code>
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;
class TrelloContext :DbContext {
public TrelloContext() { }
protected override void OnModelCreating(DbModelBuilder modelBuilder) { // To remove the requests to the Migration History table
Database.SetInitializer<TrelloContext>(null); // To remove the plural names modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
}
using System.Data.Entity.ModelConfiguration;
using System.ComponentModel.DataAnnotations.Schema;
public class Boards {
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public System.String Id { get; set; }
public System.String BoardId { get; set; }
}
public class BoardsMap :EntityTypeConfiguration<Boards> {
public BoardsMap() {
this.ToTable("Boards");
this.HasKey(Boards => Boards.Id);
this.Property(Boards => Boards.BoardId);
}
}
public DbSet<Boards> Boards { set; get; }
TrelloContext context = new TrelloContext();
context.Configuration.UseDatabaseNullSemantics = true;
var query = from line in context.Boards select line;