从控制台应用程序调用存储库时,我遇到了解决问题的问题。正常运行应用程序(.NET 4,C#,Entity Framework,Unity)时一切正常,但我创建了一个独立的控制台应用程序,它将从任务计划程序运行以导入提要。我非常接近放弃并做一个肮脏的黑客并写一个脚本来调用网页而不是使用控制台应用程序,但我想我至少会尝试理解为什么它不能先工作。
我是Entity Framework和Unity的新手,所以请耐心等待我,如果我遗漏了任何重要信息,请告诉我。
这是我得到的错误:
Resolution of the dependency failed, type = "MyNamespace.Domain.Template.IRepository`2[MyNamespace.Domain.Employees.OrganisationalUnit,System.Guid]", name = "(none)".
Exception occurred while: while resolving.
Exception is: NullReferenceException - Object reference not set to an instance of an object.
at Microsoft.Practices.Unity.UnityContainer.DoBuildUp(Type t, Object existing, String name, IEnumerable`1 resolverOverrides)
at Microsoft.Practices.Unity.UnityContainer.Resolve(Type t, String name, ResolverOverride[] resolverOverrides)
at Microsoft.Practices.Unity.UnityContainerExtensions.Resolve[T](IUnityContainer container, ResolverOverride[] overrides)
at MyNamespace.Infrastructure.FeedDefinition.GetOrganisationalUnit(String name, OrganisationalUnit parent) in C:\FeedDefinition.cs:line 552
这是控制台应用代码:
static void Main(string[] args)
{
if (args.Length > 0)
{
MyNamespace.Appliance.Configuration.Initialise.InitialiseContainer();
ImportFeedProcessor importFeedProcessor = new ImportFeedProcessor();
importFeedProcessor.Run(args[0]);
}
}
这就是它失败的地方:
IRepository<OrganisationalUnit, Guid> organisationalUnitRepository =
Context.Instance.Container.Resolve<IRepository<OrganisationalUnit, Guid>>();
如果有人能帮我理解出了什么问题,我将非常感激!
更新
这是初始化类中的(重要)位:
public static void InitialiseContainer()
{
UnityContainer container = new UnityContainer();
// Use HttpContext for registering instances against for live
IContext context = HttpContextWrapper.Instance;
// Register the HttpContext as the default context to use
container.RegisterInstance<IContext>(HttpContextWrapper.Instance);
// repositories
container.RegisterType<IRepository<Employee, Guid>, EmployeeRepository>(
new UnityContextLifetimeManager(context),
new InjectionConstructor(true, "OrganisationalUnit.Parent.Parent"));
container.RegisterType<IRepository<OrganisationalUnit, Guid>, EntityFrameworkRepository<OrganisationalUnit, Guid>>(
new UnityContextLifetimeManager(context),
new InjectionConstructor("Parent.Parent"));
// Create and populate a new Unity container from configuration
Context.Instance.Container = container;
}
也许HttpContext可以做到吗?
谢谢,
Annelie
答案 0 :(得分:1)
您可以考虑的一个选项是创建两个不同的Initialise
类(我猜这是您的Unity bootstrapper类)。
您拥有的那个可以用于您的Web应用程序。
另一个应该是非特定于网络的。删除对HttpContext
的任何引用(它将不会在控制台应用中提供)和UnityContextLifetimeManager
(假设这也是HttpContext
具体的。)