Thomas Stock
Thomas Stock

Reputation: 11266

ORM for Compact Framework 3.5 winforms app with external ms sql server 2005

I'm building a .NET CF 3.5 application that will communicate with an server based MS SQL server 2005.

The communication will happen trough the devices's WiFi connection.

I've been looking for a good O/R mapper and am a bit lost. Most sites/people assume that you're going to work with a local compact database and not with an external "normal" SQL server.

In the past, I've worked with entityspaces (but that seems to be commercial now?) and lately with linq-to-sql.

What good easy to learn & implement O/R mappers run on a .NET CF app with normal MS SQL database?

Upvotes: 1

Views: 766

Answers (1)

Bob
Bob

Reputation: 99764

I did this a few years ago with .NET 1.1 and LLBLGen with great success.

Upvotes: 1

Related Questions