Can we define a ForEach lambda inside of a for loop?

Something like this:

for (var i = 0; i < numMessageReaders; i++)
        {
            var messageReader = messageReaders[i];

            // firing
            Job
                .WithReadOnly(firerEntities)
                .WithCode(
                   () =>
                   {
                   }
}

Yes. I have done this. Are you getting an error?

No, I had thought that this was causing a bug that was actually caused by something else. Thanks though