views:

575

answers:

3

Has anyone managed to get subsonic or a variant working on Windows Mobile? We cant get it to work as it has a dependency on System.Configuration.

Any suggestions on an alternate ORMs that would work on a windows mobile device?

+1  A: 

Is the System.Configuration dependency the only issue? If so, you could always try to get around it by adding that capability. For example OpenNETCF's SDF has an OpenNETCF.Configuration namespace that mirrors a lot of the System.Configuration namespace. You might be able to eitehr modify subsonic to use that namespace, or modify and recompile the SDF's assembly to use System.Configuration as a namespace.

ctacke
A: 

You could look at something like LLBLGEN which shows support for the compact framework.

Mitchel Sellers
+1  A: 

A colleague of mine used EntitySpaces on a Windows Mobile project and was pretty pleased with it.

Michael Paladino
But you have to pay for it? :(
Dan