I was checking the NInject project. It's like other IoC frameworks, what I like the most is that it looks pretty simple to use. I downloaded some examples, install it with NuGet and all seems pretty simple.
From NInject's point of view, LLBLGen Pro Framework classes are just other interfaces/classes to bind. All LLBLGen Frameswok classes are friendly with those IoC fameworks. The question is What would you want to inject , where and how?
You might want to inject IDataAccessAdapter in some middle layer/business layer class that is agnostic of what IDataAccessAdapter implementation you are using. That way you could, for instance, have multiple DBSpecific projects, each one targeting different database types, and let NInject binding to decide which to use.
You also could create a custom Controller that receives a IEntity(2) in the constructor and perform some actions (Add, Edit, View, List, etc), and let NInject binding to decide what to use and where. This might sound great if you are using some kind of generic gui CRUD, but it will have limitations while you try to specialize the way some entities should be treated.
I tried some of these scenarios and those are working great with LLBLGen. However the way you set the NInject binding rules and what you really want to achieve is key to advance. Based on that, you can make your own tests and examples and we can help you, of course, if have further questions. I will close this thread for now, but feel free to re-open it if you want to elaborate more. Hope helpful