/* ------------------------ My Meta Content Here SEO ------------------------ */

Pages

Main Menu

Monday, September 30, 2013

Linq to SQL Like Operator Using String.StartsWith or String.Endswith

Linq to SQL Like Operator As a response for customer's question, I decided to write about using Like Operator in Linq to SQL queries. Starting from a simple query from Northwind Database; var query = from c in ctx.Customers             where c.City == "London"             select c; The query that will be sent to the database...
Read More »

My Blog List