I am very much new to ASP.NET MVC and I need help loading some types in singleton scope using Ninject.
--- existing code looks as ----
List<Type> types = loading some types into list here.
foreach (var type in types.Where(O => O.Name.StartsWith("I")))
{
Kernel.Bind(type).To(Type.GetType(type.FullName.Replace(".I", ".")));
}
My job is to bind these types in singleton scope and I am not sure how to do that.