Tagged Questions

1
vote
2answers
60 views

Cache data in SQL CE database

Background I have an SQL CE database, that is constantly updated (every second). I have a (web) application that allows a user to look at the data in real-time. At some point a user can click "take a …
0
votes
1answer
230 views

LINQ aggregate left join on SQL CE

What I need is such a simple, easy query, it blows me away how much work I've done just trying to do it in LINQ. In T-SQL, it would be: SELECT I.InvoiceID, I.CustomerID, I.Amount AS AmountInvoiced, …
0
votes
1answer
60 views

Transferring Data Between Server and Client (Mobile)

Scenario: Client (Mobile) - .Net CF 2.0, SQL CE 3.0 Server - .Net 2.0, SQL Server 2005, Web Service Client and Server database schemas differ. From server - only certain columns from certain tables …
1
vote
0answers
119 views

Windows Mobile : How to bind dropdown’s selectedvalue to a column in table A and the list data to a lookup table B?

Hi, I am trying to learn the basics of Windows Mobile development against SQL CE and have come across a basic problem. I have two tables. One called Customers that stores customer info and has an …
0
votes
0answers
65 views

SSIS 2008 - How to read from SQL Server Compact Edition file?

I can see "SQL Server Compact Destination" under Data Flow Destinations, but I am looking for its source counterpart. If I choose ADO.Net source and create a new connection, there's no provider for …
1
vote
2answers
367 views

Copying large amounts of data into a SQL CE database

If I have a large amount of data in memory, what is the best way to copy it into a SQL CE table? The current technology stack is C#, ADO.net, and SQL CE. My initial idea was to do one INSERT …
0
votes
0answers
47 views

How to build a setup package for a desktop application using SQL CE 3.5 and Entity Framework?

I am having a WPF desktop application that uses SQL CE (compact edition 3.5 ) and using the Entity Framework as a Datalayer. As It turned out in …
1
vote
2answers
354 views

Is this an example of LINQ-to-SQL?

I made a little WPF application with a SQL CE database. I built the following code with LINQ to get data out of the database, which was surprisingly easy. So I thought "this must be LINQ-to-SQL". …