views:

278

answers:

1

I'm trying to build a SQLCe table structure dynamically using a dataset as the temporary table structure...

Is there a SqlConnection string that will work with SqlCe? There used to be a SqlCeConnection...but I don't find that in the 4.0 framework? Has something replaced this?

If the answer is L2S or Entity Framework...can I add columns to SqlCe tables at runtime? If so...how?

+3  A: 

There still is a SqlCeConnection class. Do you have a reference to the System.Data.SqlServerCe assembly?

Henk Holterman
I did have one... turns out I had two and chose the older.
Tyler Edwards