ノーコードでクラウド上のデータとの連携を実現。
詳細はこちら →CData
こんにちは!ウェブ担当の加藤です。マーケ関連のデータ分析や整備もやっています。
Entity Framework はobject-relational mapping フレームワークで、データをオブジェクトとして扱うために使われます。Visual Studio のADO.NET Entity Data Model ウィザードを実行するとEntity Model を作成できますが、このモデルファーストアプローチでは、データソースに変更があった場合やエンティティ操作をより制御したい場合は不都合があります。この記事では、CData ADO.NET Provider を使いコードファーストアプローチでSurveyMonkey にアクセスします。
SurveyMonkey はOAuth 2 認証標準を利用しています。SurveyMonkey がアンケートの回答を読むためにこれを必要とすることを考えると、アンケートを読むアカウントには有料プランのサブスクリプションが必要です。
SurveyMonkey への接続に使用できる認証方法は2つあります。
個人用トークンを使用して、自分のデータをテストし、アクセスします。個人用トークンを取得するには、ヘルプの「Creating a Custom OAuth App」の手順に従って、次の接続プロパティを設定します。
CData 製品はすでにSurveyMonkey にOAuth アプリケーションとして登録されています。そのため、デフォルトでは、自動的に埋め込みクレデンシャルを使用して接続します。
独自のカスタムOAuth アプリを使用したい場合は、ヘルプのCustom Credentials を参照してください。
<configuration>
... <connectionStrings>
<add name="SurveyMonkeyContext" connectionString="Offline=False;OAuthClientId=MyOAuthClientId;OAuthClientSecret=MyOAuthClientSecret;CallbackURL=http://localhost:portNumber;" providerName="System.Data.CData.SurveyMonkey" />
</connectionStrings>
<entityFramework>
<providers>
... <provider invariantName="System.Data.CData.SurveyMonkey" type="System.Data.CData.SurveyMonkey.SurveyMonkeyProviderServices, System.Data.CData.SurveyMonkey.Entities.EF6" />
</providers>
<entityFramework>
</configuration>
</code>
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
using System.Data.Entity.ModelConfiguration.Conventions;
class SurveyMonkeyContext :DbContext {
public SurveyMonkeyContext() { }
protected override void OnModelCreating(DbModelBuilder modelBuilder) { // To remove the requests to the Migration History table
Database.SetInitializer<SurveyMonkeyContext>(null); // To remove the plural names modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
}
using System.Data.Entity.ModelConfiguration;
using System.ComponentModel.DataAnnotations.Schema;
public class MySurvey_Responses {
[DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)]
public System.String Id { get; set; }
public System.String RespondentId { get; set; }
}
public class MySurvey_ResponsesMap :EntityTypeConfiguration<MySurvey_Responses> {
public MySurvey_ResponsesMap() {
this.ToTable("MySurvey_Responses");
this.HasKey(MySurvey_Responses => MySurvey_Responses.Id);
this.Property(MySurvey_Responses => MySurvey_Responses.RespondentId);
}
}
public DbSet<MySurvey_Responses> MySurvey_Responses { set; get; }
SurveyMonkeyContext context = new SurveyMonkeyContext();
context.Configuration.UseDatabaseNullSemantics = true;
var query = from line in context.MySurvey_Responses select line;