Blog that contains articles about new technologies related or not with programming.
I will describe and solves some problems that I encounter in my career.
ASP .NET, AJAX, Javascript, C++, C# and SQL are some of the subjects that will appear.
19 May 2015
orderby in linq to sql
SELECT DISTINCT UNIVERSE FROM dbo.MASTER ORDER BY UNIVERSE
from M in dbo.MASTER where M.UNIVERSE != null orderby M.UNIVERSE select new { M.UNIVERSE } ).Distinct();
No comments:
Post a Comment