Echilon
Echilon

Reputation: 10244

Mango and System.Data

I've been experimenting with Mango's new data libraries (System.Data.Linq) but I've never used Linq to SQL before and all of my existing code is written for SQLite with ADO.NET. Is there any way (via referencing a Silverlight DLL or otherwise, that I can just write the SQL myself or am I forced to use Linq if I want to use SQL Server CE?

Upvotes: 1

Views: 379

Answers (1)

Matt Lacey
Matt Lacey

Reputation: 65564

The only way to use SQL Server CE on Windows Phone 7 is via Linq.
There is now way to use SQL that you write yourself.

Upvotes: 3

Related Questions