私はこれをしたい:
public static void SetStringsToBeNonUnicode(this EntityTypeConfiguration<T> config)
{
}
コンパイラは <T> が好きではありません。これの正しい構文は何ですか?
詳細なコンテキストでは、EntityTypeConfiguration は EntityFramework クラスであり、次のように定義されています。
public class EntityTypeConfiguration<TEntityType> : StructuralTypeConfiguration<TEntityType> where TEntityType : class
これが私の頭痛の原因です。
私が本当にやりたいことは、dbcontext クラスを構成するときに次のようなことができるようになることです。
public class ReceiptEntityConfiguration: EntityTypeConfiguration<ReceiptEntity>
{
public ReceiptEntityConfiguration()
{
ToTable("vReceipt");
HasKey(r => r.ReceiptId);
this.SetStringsToBeNonUnicode(); //I want to make all string fields for this entity type (ReceiptEntity in this case) to be treated as not unicode.
...etc etc
}
}
EF6.0 はこれを Lightweight Conventions で処理しますが、ベータ版を製品に使用することはできません。