[Solved] WCF, MySQL and Transaction

[ad_1] This can’t be the code that’s causing an issue. The error you are getting is coming from an attempt to return or pass in a MySqlTransaction to/from the service. That’s just simply not going to work. Also, why on earth are you exposing a Command object to the outside world via a public property? … Read more

[Solved] Do while loop check for last iteration [closed]

[ad_1] Sure you could do this to count the iteration But put the ‘int iterationCheck=0’ variable declaration before the do/while scope. You could go for a ‘for’ loop too ( which would be better ) However it all depends on the condition of your loop. Because we can’t infer the ‘out’ condition of your loop … Read more

[Solved] Can System.IO.MemoryMappedFiles.dll be used in Visual Studio 2008

[ad_1] This will not help you. If this DLL is included with the .NET 4.0 redistributable, then you should have it installed already, and if you don’t, you need to re-download and re-install the redistributable from Microsoft’s website. This will allow you to run an application that was written and compiled for .NET 4.0. If … Read more