How I can use multiple parameters in Ninject syntax like following?
Bind() .To() .WithConstructorArgument(\"conn
You can chain the calls to WithConstructorArgument:
WithConstructorArgument
Bind() .To() .WithConstructorArgument("connectionString", ConfigurationManager.ConnectionStrings["MyDb"].ConnectionString) .WithConstructorArgument("timeout", 10000);