In Simple Injector I can do the following:
container.RegisterSingle<IAuctionContext>(() => new AuctionContext(
new Uri("http://localhost:60001/AuctionDataService.svc/")));
What I am doing here is saying that when IAuctionContext
is found, replace it with this new AuctionContext
. The problem is that with the call to RegisterSingle
, only a single instance of AuctionContext
will be used. What I'd like it to be able to pass in a Uri
parameter as above but not have the single instance but allow a new instance each time.
How is this possible?