Contents tagged with SQL CE
-
Accessing data as resource through URI - WCF Data Services
Open Data Protocol (OData for short) allows CRUD operations on your data by exposing it as a resource accessible through a URI. So you can try something like below directly on the browser to get a collection of all employees less than 26 years of age.
http://somesite.com/EmployeeService.svc/Employees?$filter=Age lt 26 -
Executing SQL queries on SQL CE 4 through Entity Framework
In my previous blog, I wrote about how to use inheritance through entity framework on SQL CE database. In this blog however, I’ll explore how you can run a typical SQL query statement on the database table and read/write the values. I will build on the application that I used in the last article.
-
Entity Framework Model Inheritance with SQL CE 4
For some (unknown) reason, I’ve been curious to work with SQL CE, just hadn’t gotten a chance to work with it. If you’re not familiar with what SQL CE is all about, go through this article from Scott Gu.