导入无效。
我有一个UserProfileService
类,我可以在AggregateCatalog
中看到它导出。 UserProfileService
位于基础设施项目中。我正在基础设施项目的RelayCommand
类中导入它。我已经通过类似的帖子,但无法解决它。将不胜感激任何帮助。这是代码:
[Export(typeof(IUserProfileService))]
[PartCreationPolicy(CreationPolicy.Shared)]
public class UserProfileService : IUserProfileService
{
...
}
public class RelayCommand<T> : ICommand
{
[Import]
private IUserProfileService UserProfileService { get; set; }
...
}
谢谢, 伊马德。