I've created POCO classes with T4 Templates for EF 4.0 and generated mock for Context. Everything was great, but i don't like to initialize even small Mock-DB in C# code, so i've created some functions which generates Mock-DB from real DB and i wanted to serialize this object and use it later in some Unit Tests...
XML serialization fails, so i've tried binary serialization and serialization succeed, but deserialization failed.
Deserializer cannot find assembly "EntityFrameworkDynamicProxies-". How can i deserialize such thing (DynamicProxy?)...