.svc を使用しない自己ホスト型サービスのサービス実装タイプとホスト ファクトリを指定する必要がありますか? 以下のコンソール アプリを実行しようとすると、既定のコンストラクターがないというエラーが表示されるため、コンテナーの登録が使用されていないようです。私は何が欠けていますか?
var builder = new ContainerBuilder();
builder.Register(c => new GenericRepository()).As<IRepository>();
builder.Register(c => new BusinesLogic(c.Resolve<IRepository>())).As<IBusinesLogic>();
builder.Register(c => new MyService(c.Resolve<IBusinesLogic>())).As<IMyService>();
using (IContainer container = builder.Build())
{
var address = new Uri("net.tcp://localhost:8523/MyService");
var host = new ServiceHost(typeof(MyService), address);
host.AddServiceEndpoint(typeof(IMyService), new NetTcpBinding(), string.Empty);
host.AddDependencyInjectionBehavior<IMyService>(container);
host.Description.Behaviors.Add(new ServiceMetadataBehavior { HttpGetEnabled = false });
host.Open();
Console.WriteLine("Navigate to the following URI to see the service.");
Console.WriteLine(address);
Console.WriteLine("Press enter to exit...");
Console.ReadLine();
host.Close();
Environment.Exit(0);
}