場でオブジェクトをロードするために、文字列パラメータを使用して、あなたは本当に熱心場合は、動的オブジェクトを作成するファクトリを使用することができます。
public interface IDynamicTypeFactory
{
object New(string t);
}
public class DynamicTypeFactory : IDynamicTypeFactory
{
object IDynamicTypeFactory.New(string t)
{
var asm = Assembly.GetEntryAssembly();
var type = asm.GetType(t);
return Activator.CreateInstance(type);
}
}
ボックスDIサービスプロバイダのうちに組み込まれた機能ではないことをあなたができ、その後
public void ConfigureServices(IServiceCollection services)
{
services.AddTransient<IDynamicTypeFactory, DynamicTypeFactory>();
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory, IDynamicTypeFactory dynamicTypeFactory)
{
loggerFactory.AddConsole();
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.Run(async (context) =>
{
var t = (IClass)dynamicTypeFactory.New("WebApplication1.Class1");
await context.Response.WriteAsync(t.Test());
});
}
あなたは次のサービス
を考えてみましょう。他にもDIフレームワークがあり、そのほとんどがServiceCollectoinと統合されています。だから私はそれらの1つを使用することをお勧めします。 – Nkosi