c# - mono - The name SqlContext does not exist in the current context -
i've been using database migration tool .net called dbup
in windows projects long time, , had make sure worked on mono (under mac os x).
i downloaded latest releases of mono (4.4.1.0) , xamarin (5.10.1.6) studio, project build fails @ line of code:
sqlcontext.pipe.send("info: " + string.format(format, args));
the error follows:
engine/output/sqlcontextupgradelog.cs(9,13): error cs0103: name `sqlcontext' not exist in current context
this code compiles fine on windows using visual studio. can see sqlcontext
class contained in system.data.dll
assembly. however, seems missing in mono.
is .net class not implemented in mono or have take additional steps working?
Comments
Post a Comment