Reputation: 21
I'm trying to build a SQL Server CE table structure dynamically using a dataset as the temporary table structure...
Is there a SqlConnection
string that will work with SQL Server CE?
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 SQL Server CE tables at runtime?
If so... how?
Upvotes: 2
Views: 999
Reputation: 273264
There still is a SqlCeConnection class. Do you have a reference to the System.Data.SqlServerCe assembly?
Upvotes: 3