1
私はこのNugetライブラリを使用しています:私は予測を使用してこのコードを実行するとAutomapperをEntityFramework 6.1.3で使用してカスタム(UDF)DbFunciton呼び出しをプロジェクトに追加するにはどうすればよいですか?
public abstract class DbCore : DbContext {
[DbFunction("CodeFirstDatabaseSchema", "DecodeBase64")]
public static string DbDecodeBase64(string encoded) {
throw new NotSupportedException();
}
protected override void OnModelCreating(DbModelBuilder modelBuilder) {
modelBuilder.Conventions.Add(new FunctionsConvention("dbo"));
base.OnModelCreating(modelBuilder);
}
}
:
EntityFramework.CodeFirstStoreFunctions
は、このコードをお持ちの
IMappingExpression mapperExpression = ...(omitted)
mapperExpression.ForMember(dest => dest.ContactNote, opt => opt.MapFrom(entity => DbCore.DbDecodeBase64(entity.ContactNote)));
それから、私はSQL関数(UDF )は、DecodeBase64