The Unity Application Block (Unity) is a lightweight, extensible dependency injection container for .NET with support for interception.
0
votes
1answer
19 views
Silverlight App (MVVM ) + Unity Issue
I have teh following scenario:
OrderListViewModel, serving a list of Orders to OrderListView view in OrderListView the selected Order get stored in SelectdOrder property of the OrderListViewModel, so ...
0
votes
1answer
15 views
Unity section in .config file using Protected Configuration Provider
In my app config I'm using RSA Protected Configuration Provider, everything works fine when using it with connectionStrings section but NOT with unity section in app.config. Whenever I try to make ...
0
votes
1answer
19 views
Unity.AutoRegistration ?? Convention Based Registration Unity
My Code ...
IUnityContainer container = new UnityContainer();
container
.ConfigureAutoRegistration()
.LoadAssemblyFrom(typeof(Test).Assembly.Location)
...
0
votes
2answers
28 views
Modifying ViewModel Properties outside of ViewModel - Values aren't saving
Is it possible to modify properties of a ViewModel by using an instance of ViewModelLocator elsewhere in the code? When I try, any value I try to assign seems to be discarded.
For example, a ...
0
votes
0answers
28 views
Is it better avoid the inferece types in Unity's C# scripts? [duplicate]
I have a performance question. Is it better avoid using "var" in Unity's C# Scripts?
Example:
This:
float paddleXpos = ((Input.mousePosition.x - Screen.width / 2) / (Screen.width / 2));
is ...
0
votes
1answer
31 views
c# unity interception by attribute
is here a way how to use interception by attribute in c# unity and keep the object registration code in xml file(like app.config)? If yes can you provide me with code, how should such registration ...
2
votes
0answers
43 views
Hook Unity into Web API Filter Attributes
I have Unity running great for all the controllers in my ASP.NET Web API project - just using the default set up that comes out of the NuGet box. I have also managed to hook it up to MVC Filter ...
0
votes
1answer
13 views
use named mapping type to resolve constructor parameter with Unity
I want to garanty that unity resolve a constructor parameter using a named registration, for example:
I have two type registrations:
_container.RegisterType<IMyInterface, ...
0
votes
0answers
19 views
Unity resolve with two different LifetimeManagers?
This application exists, and likely has some less than ideal design decisions that we can't just change...so here goes.
In our Unity initializer, the following is registered
...
0
votes
0answers
15 views
IsRegistered method on UnityContainer when loading modules on different threads
Have a multithreaded WPF application. The loading of the modules is based on priority assigned to the modules. Only the high priority modules get loaded on the UI thread and the rest of the modules ...
0
votes
1answer
49 views
Unity dummy resolve to minimize the cost of object initialization
I have a component that the constuctor takes a long time to execute (it uses SAPBOBSdll to connect to a SAP Business One database) in my Prism aplication. I register it in the Unity container:
...
0
votes
1answer
40 views
Selecting constructor with fewer parameters in Unity
I have a 3rd party class library. One of the classes in that library, has a constructor with multiple overrides.
I want to tell Unity to create the class, using a constructor with fewer parameters ...
1
vote
2answers
20 views
Unity execute method when resolving type
Using Unity I'd like to execute a method to return an instance that should be injected into the constructor each time the type is resolved.
i.e. in the example below InitializeTest() is only executed ...
0
votes
1answer
38 views
How do I register components at run time with unity DI
I created an Microsoft unity project (my first using Dependency Injection) with my home controller working fine as expected having registered my messaging Class as follows
private static ...
0
votes
2answers
53 views
LINQ to XML Get (children?) of element?
How would I go about getting the ID information using Linq. I'm trying to add them to an array of int.
<FactionAttributes>
<name>Player</name>
<id>0</id>
...
0
votes
2answers
50 views
Instantiating a Unity Named Type Registration with ASP.NET MVC 4 Application
I would like to understand how i can resolve a unity named type registration within an MVc4 application.
I am using "Unity 3.0" and the "Unity boostrapper for AP.NET MVC".
I understand that unity is ...
0
votes
4answers
76 views
Dependency Injection with MVC4 using parameterless Controller
I am going through the following tutorial. I'm at the part
IUnityContainer BuildUnityContainer()
{
var container = new UnityContainer();
container.RegisterType<IStoreService, ...
1
vote
1answer
48 views
Is it possible to programmatically perform an assembly redirect
We're using Microsoft's Unity framework for dependency injection in some new class libraries. The main app is using some of the other enterprise libraries (Common and Logging) which are expecting ...
1
vote
1answer
37 views
Getting unity to resolve multiple instances of the same type
I want to do a simple resolve of multiple type registrations (ultimately constructor injected, but using .Resolve to see if Unity is even capable of such things.
In every case below, Unity resolves 0 ...
2
votes
0answers
38 views
Unity Container Fails to Build Up
I'm trying to instantiate a new class using the type passed in and then use the Unity Container to build up the object to inject its dependencies.
The Unity Container does not have any ...
3
votes
1answer
131 views
Resolving Unity Dependencies without a Unity.MVC
I have two projects that use the following Unity logic:
container.RegisterType<IUnitOfWork, MyDbContext>(
new HierarchicalLifetimeManager(),
new InjectionFactory(
c => new ...
3
votes
1answer
73 views
How to inject Service Layer into controller when service layer depends upon repository and UnitOfWork
I am a little confused about how this would work with Unity. Let's assume the following scenario, I have a controller called TestController that depends upon two Services ServiceA and ServiceB. Now ...
0
votes
1answer
58 views
Dependecy Injection works with Unity but doesn't with Ninject
I've been working on EF Repository pattern with Unit of Work and DI. I was following this example: link In example is used Unity as DI container, but I want to use Ninject.
(Note: with Unity ...
0
votes
1answer
45 views
Unity and Repository pattern
Hi I am using a UOW and Repository pattern in my project and I have created the following code:
// Interfaces
public interface IUnitOfWork : IDisposable
{
IGenericRepository<Company> ...
0
votes
3answers
61 views
Unity Singleton Code
I'm new to Unity and am trying to write some Unity logic which initialises and register/resolves a singleton instance of the Email object so that it can be used across several other objects, one ...
1
vote
1answer
52 views
Why Unity interception cannot catch Exception?
I got an issue with Unity interception when throw an Exception in my method. Please reference from my sample application as below:
class Program
{
static void Main(string[] args)
{
...
0
votes
1answer
51 views
Unity.mvc3 - Dispose method is not being called for a disposable class being managed by HierarchicalLifetimeManager
Below is my code, and the issue is that the dispose method of my UnitOfWork class does not get called. For DI, I am using Unity v2.1.505 with Unity.Mvc3 v1.2 in Asp.net MVC3 Application
[assembly: ...
0
votes
0answers
46 views
Dynamically loading assemblies that rely on MS Unity framework
I'm trying my hand at .NET reflection, and I thought it might be a fun challenge to dynamically load the DLLs for the Ektron framework api and then generate a list of the public classes and the public ...
0
votes
1answer
53 views
Convert Ninject to Unity
I'm currently migrating some working Ninject code over to Microsoft Unity and am a bit stuck on this particular conversion.
...
1
vote
2answers
75 views
Caliburn.Micro + Unity 2.1 + MVVM: example code
I'm trying to implement Unity in a WPF MVVM application, but I'm missing the big picture.
At this moment I have created a bootstrapper like this:
public class MainBootstrapper : ...
0
votes
1answer
36 views
Unity Interception and classes with Circular Reference
My rich domain model has some circular reference, and this is intentional.
I am also writing my own ORM for more control, and to detect changes made to properties I am using Unity to intercept any ...
0
votes
0answers
15 views
Unity Circular References detection in IMatchingRule
Okay let's establish, I found out the hard way that policy injection in Unity does not automatically handle circular references.
Now, can I detect circular references using IMatchingRule?
For that ...
0
votes
1answer
38 views
Proper way to dependency inject authenticated user to my repository class
I am using a service layer with repository pattern. The controller has a dependency on the service layer, and the service layer has a dependency on the repository.
I have to pass logged in user ...
0
votes
1answer
31 views
Windows forms register dependencies using Unity
Where do I setup my container and register all my dependencies for a WinForm app? Do I setup the container on every form or is there a common place I can do it (like the Main function)? Also, is there ...
0
votes
1answer
28 views
Object reference not set to an instance of an object, Unity Dependency Resolver
My IUserService is null, not sure what's going on.
This is my AccountController:
private readonly ICustomMembershipProvider _membershipProvider;
public AccountController(ICustomMembershipProvider ...
5
votes
1answer
134 views
Generics with contravariant type parameters and Unity container
I have an interface with contravariant type parameter, say IFoo:
interface IFoo<in T> {}
Now I have three classes:
class B {}
class D : B {}
class Foo : IFoo<B> {}
If I register ...
0
votes
0answers
12 views
probing with ASP.NET and reflection and unity
I'm facing a unique problem. I have following site structure
MainSite
Bin
Sub feature
bin.
It can be seen that the Bin folder specific to the sub features are present under the sub features ...
0
votes
2answers
49 views
Register abstract class and resolve derived class with Unity
I have the following code
public abstract class A
{
public abstract string MethodA();
}
public class B : A
{
public override string MethodA()
{
return "Class B method";
}
}
...
2
votes
2answers
63 views
WPF Prism - Send an object in navigatoin
I'm writing a WPF/MVVM application using Prism/Unity. I'm having issues on how to transfer data from one usercontrol to another when navigating a region.
I have a region
This is populated by a ...
1
vote
2answers
59 views
Problems integrating NServiceBus with ServiceStack IRequiresRequestContext
I am looking to integrate NServiceBus into an existing ServiceStack web host. ServiceStack is currently using the built in Funq IoC container. NServiceBus has been configured (elsewhere in the system) ...
0
votes
0answers
75 views
asp.net mvc 4 IDependencyResolver with Unity
I am new to MVC 4 world (just started yesterday) and I am
looking DI with unity.
I am using IDependencyResolver to get/resolve dependencies.
If I use this implementation everything is OK
Public ...
0
votes
1answer
73 views
Why is the controller's parameterless constructor called and not the one with the biggest number of parameters
I have had a website asp.net MVC solution
My controller had 2 constructors: one parameterless and one with few parameter.
The code used to go through the ctor with the parameters, injection them ...
4
votes
1answer
143 views
custom membership provider and unity dependency injection
I have found a few questions similar to the one I'm posting but I'm not getting from them what I really need.
I'm still struggling to implement my CustomMembershipProvider using Microsoft Unity DI.
...
1
vote
1answer
45 views
IoC and Unity, where do I call the method that registers the types
I try to learn and use the IoC together with Unity in web services but I can't figure out how to or what should call the method that calls all the registerType methods.
In pseudo code I will try to ...
0
votes
1answer
31 views
Exception Debugging using Unity IOC
I'm having issues getting good Exception information when using Microsoft.Practices.Unity to load some classes dynamically.
The code is on a remote server and I'm using ELMAh to capture errors. I ...
0
votes
0answers
87 views
Error when using unity 3 and entity framework 5 in mvc 4 project
I have a MVC 4 solution where I'm trying to use Unity but on BootStrapper.cs when calling
var container = BuildUnityContainer();
It just gives me an error:
Could not load file or assembly ...
0
votes
1answer
29 views
How can I make Unity resolve a type to a property of another type?
Imagine I have the following classes:
class A
{
public B B { get; set; }
}
class B
{
}
I also have a Unity container with A registered as a singleton:
container = new UnityContainer();
...
1
vote
1answer
44 views
DependencyInjection with a Cache and a Repository that both implement the same interface
So I've encountered a minor conundrum while using Dependency Injection today (using Unity) - I have both a repository and a cache that is backed by that repository.
Here is a very basic ...
0
votes
1answer
58 views
Handle exceptions during WCF service instance creation
I am using Unity.Wcf to inject dependencies in the service class and it work fine. But if I configure my dependencies incorrectly an exception is thrown by unity that it cannot build up my service ...
0
votes
0answers
57 views
c# unity divide configuration into multiple files
is it possible in unity IoC to divide configuration file into multiple ones? I mean in the basic file I would just somehow include the other configuration files, just to keep code clean a little. Is ...



