The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
52 views

How do you inject with parameters using AutoFac?

I'm trying to figure out the syntax to inject OrmLiteConnectionFactory using AutoFac. This is a working example using Funq, another DI framework. container.Register<IDbConnectionFactory>(c ...
1
vote
1answer
45 views

servicestack with funq - autowiring by convention

I have a service which takes an IMyDependency in its constructor. IMyDependency, MyDependency and the service all live in the same assembly. MyDependency has a single, public, parameterless ...
1
vote
2answers
65 views

ServiceStack Access Ioc container within Custom CredentialsAuthProvider

I've extended the CredentialsAuthProvider provided by service-stack to allow me to authenticate against a Active-Directory instance. The AD access logic is encapsulated within a custom class called ...
2
votes
0answers
72 views

ServiceStack Funq MVC html helper extension

I'm trying to create a MVC html helper extension that have to be declared as a static class, something like this: public static class PhotoExtension { public static IPhotoService PhotoService { ...
1
vote
1answer
58 views

Registering same concrete class with RegisterAutoWired and RegisterAutoWiredAs

My question is quite simple. I have to register all implementations by their interface and concrete types. container.RegisterAutoWiredAs<AuthenticationManager, IAuthenticationManager>(); ...
2
votes
1answer
125 views

Funq and disposing of child container

we are using Funq in our windows service to execute some scheduled tasks, and for each round we are creating a child container than create all our objects and on the end disposing child container, we ...
3
votes
1answer
87 views

NUnit + ServiceStack's Funq AutoWire issue

I've been testing my business logic in ServiceStack 3.9.38 project, and faced a problem when running unit tests separatly leads to success, and running tests all together leads to fail of one of them. ...
1
vote
1answer
64 views

Funq scope in ServiceStack (Best Practice)

In my Web application I use a standard mechanism for resolving dependencies into a AppHost.cs public virtual void Configure(Container container){ } In this method, I register all dependencies. ...
1
vote
2answers
66 views

Accessing IHttpRequest or IRequestContext from container

I need to have the resolution of a dependency for my services to be based off the value of an HTTP header in the incoming request. I've tried registering a factory method like so: ...
7
votes
2answers
214 views

How to use ServiceStack Funq in my own projects

At work we're doing several new web services projects in ServiceStack and taking advantage of Funq in some of them. I'm currently working on a separate project that will consume said web services and ...
1
vote
1answer
99 views

Property not being set in constructor by Container

I have a Service created with ServiceStack. I am using Funq for my Dependency Injection as it comes with ServiceStack by default, but this may be behaviour exhibited by other DI containers. I ...
2
votes
1answer
171 views

ServiceStack - Dependency seem's to not be Injected?

I have the following repository class: public class Repository<T> : IDisposable where T : new() { public IDbConnectionFactory DbFactory { get; set; } //Injected by IOC IDbConnection db; ...
1
vote
1answer
221 views

How can I resolve ILog using ServiceStack and Funq.Container

The ServiceStack AppHost provides a Funq.Container with which to register types that can be injected into Services as they are constructed. Can this container be used to register an ILog factory that ...
3
votes
1answer
110 views

ServiceStack Funq Container WeakReference proliferation

I recently wrote a small service that handles high amounts of throughput (on the order of 60+ million requests per day) and it is encountering memory issues. At first, I looked through all of the ...
1
vote
1answer
173 views

ServiceStack/Funq cannot resolve System.Boolean exception

I've setup a ServiceStack api using the built-in Funq IoC container to resolve my repositories. However, when I call an api method, I get the following exception: Required dependency of type ...
1
vote
1answer
98 views

Funq passing existing objects as parameters

I only know how to Register and Resolve new instances. However, I am not sure how to pass existing objects as parameters in to an instance I want to resolve. Q1: interface IPerson { person ...
2
votes
1answer
291 views

Constructor Injection with ServiceStack MVC Powerpack + Funq

I'm playing with the demo MVC 3 Internet Application template and I installed the ServiceStack.Host.Mvc NuGet package. I'm having issues with Funq performing constructor injection. The following ...
3
votes
5answers
323 views

How can I resolve circular dependencies in Funq IoC?

I have two classes which I need to reference each other. class Foo { public Foo(IBar bar) {} } class Bar { public Bar(IFoo foo) {} } When I do: container.RegisterAutoWiredAs<Foo, ...
2
votes
4answers
591 views

using RavenDB with ServiceStack

I read this post by Phillip Haydon about how to use NHibernate/RavenDB with ServiceStack. I don't see the point about getting the IDocumentStore and open new session every time i need something from ...
0
votes
1answer
234 views

Instance of Container used in Funq

I am waching the screencast of Funq but I don't understand something with the following lambda in the testing code : var container = new Container(); container.Register<IBar>(c => new ...
3
votes
1answer
930 views

Funq usage in ServiceStack

So simple question How can I access Container instance out of controller? I have to use Container.Resolve in my class but how can I access Container instance? Is it singleton? Can I use new ...
4
votes
1answer
549 views

Does Funq support ResolveAll?

Does the Funq IoC container support resolving all registrations for a type? Something like either of these: IEnumerable<IFoo> foos = container.Resolve<IEnumerable<IFoo>>(); ...
7
votes
2answers
2k views

How to register multiple IDbConnectionFactory instances using Funq in ServiceStack.net

How would you go about registering diferent IDbConnectionFactory instances in Funq and then access them directly within your services? Do named instances somehow come into play here? Is this the ...
6
votes
1answer
1k views

Does Funq IoC Container support property injection?

I'm looking for an IoC container to use in my Compact Framework application. Trying out Funq I noticed that I can't find a way to do Property Injection with it. I've looked through the discussion on ...