Reputation: 14071
I realy don't know why Ninject throws this error since I have been using it for some time now.
It says I didn't implement a method but it's realy there.
Method 'GetApplicationLogEntries' in type 'FollowUp.Repository.Impl.ApplicationLogRepository' from assembly 'FollowUp.Repository.Impl, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' does not have an implementation.
I made the smallest repro possible at https://www.sugarsync.com/pf/D6486369_1701716_00156
Can someone with ninject experience help me out please? Much appreciated.
Kind Regards, Tom
Upvotes: 0
Views: 758
Reputation: 32725
This is not a Ninject related problem. The exception tells you that the assembly could not be loaded by the .NET framework for any reason. Check the fusion log to get more information what happend.
A common reason for this type of exception is when you try to load an x86 assembly into a x64 process or the other way round.
Upvotes: 5