各製品の資料を入手。
詳細はこちら →CData
こんにちは!ウェブ担当の加藤です。マーケ関連のデータ分析や整備もやっています。
Entity Framework はobject-relational mapping フレームワークで、データをオブジェクトとして扱うために使われます。Visual Studio のADO.NET Entity Data Model ウィザードを実行するとEntity Model を作成できますが、このモデルファーストアプローチでは、データソースに変更があった場合やエンティティ操作をより制御したい場合は不都合があります。この記事では、CData ADO.NET Provider を使いコードファーストアプローチでSquare にアクセスします。
Square OAuth 認証標準を使用します。OAuth を使用して認証するには、Square にアプリを登録してOAuthClientId、OAuthClientSecret、CallbackURL を入手します。OAuth の使用方法については、ヘルプドキュメントの「はじめに」セクションをご覧ください。
追加でLocationId を指定する必要がある場合があります。Locations テーブルをクエリすることでLocations のId を取得できます。または、クエリの検索項目にLocationId を設定することもできます。
<configuration>
... <connectionStrings>
<add name="SquareContext" connectionString="Offline=False;OAuthClientId=MyAppId;OAuthClientSecret=MyAppSecret;CallbackURL=http://localhost:33333;LocationId=MyDefaultLocation;" providerName="System.Data.CData.Square" />
</connectionStrings>
<entityFramework>
<providers>
... <provider invariantName="System.Data.CData.Square" type="System.Data.CData.Square.SquareProviderServices, System.Data.CData.Square.Entities.EF6" />
</providers>
<entityFramework>
</configuration>
</code>
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;
class SquareContext :DbContext {
public SquareContext() { }
protected override void OnModelCreating(DbModelBuilder modelBuilder) { // To remove the requests to the Migration History table
Database.SetInitializer<SquareContext>(null); // To remove the plural names modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
}
using System.Data.Entity.ModelConfiguration;
using System.ComponentModel.DataAnnotations.Schema;
public class Refunds {
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public System.String Id { get; set; }
public System.String Reason { get; set; }
}
public class RefundsMap :EntityTypeConfiguration<Refunds> {
public RefundsMap() {
this.ToTable("Refunds");
this.HasKey(Refunds => Refunds.Id);
this.Property(Refunds => Refunds.Reason);
}
}
public DbSet<Refunds> Refunds { set; get; }
SquareContext context = new SquareContext();
context.Configuration.UseDatabaseNullSemantics = true;
var query = from line in context.Refunds select line;