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