Created
March 30, 2011 16:18
-
-
Save PrintsCharming/894710 to your computer and use it in GitHub Desktop.
Fresh Massive Install on MVC 3 blank site
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compiler Error Message: CS0121: The call is ambiguous between the following methods or properties: 'Massive.ObjectExtensions.ToExpando(object)' and 'Massive.ObjectExtensions.ToExpando(object)' | |
Source Error: | |
Line 82: /// <returns></returns> | |
Line 83: public static IDictionary<string, object> ToDictionary(this object thingy) { | |
Line 84: return (IDictionary<string, object>)thingy.ToExpando(); | |
Line 85: } | |
Line 86: } | |
Source File: c:\DevProjects\ce4\MassiveTest2\MassiveTest2\App_Code\Massive.cs Line: 84 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a really weird error. I moved the Massive.cs file from App_Code into Models and it works for read actions. Write actions still fail for some reason. At this point, I just grabbed the latest version from github and it worked.