Aaronontheweb on 1.4.14
Aaronontheweb on master
Bump Mongo2Go from 2.2.14 to 2.… Bump MongoDB.Driver from 2.11.4… Bump Microsoft.NET.Test.Sdk fro… and 4 more (compare)
Aaronontheweb on 1.4.14
Aaronontheweb on dev
Added v1.4.14 release notes (#1… (compare)
Aaronontheweb on dev
ensure that all recovered Times… (compare)
Aaronontheweb on 1.4.14
Added v1.4.14 release notes (compare)
Is this really the correct way to do this?
protected override void PreStart()
{
var producer = Context.System.GetExtension<DIExt>();
childActor = Context.ActorOf(producer.Props("MyActor"));
base.PreStart();
}
Why cant I do this?
protected override void PreStart()
{
var producer = Context.System.GetExtension<DIExt>();
childActor = Context.ActorOf(producer.Props<MyActor>());
base.PreStart();
}