|
|
|
|
|
|
-
Dave Vroman Commented 11 Days ago through Blogs | 1 Point
Very Good!
Not all of the queries are correct though.
SELECT OBJECT_NAME(ac.OBJECT_ID)[table], ac.name
FROM sys.all_columns AS ac
INNER JOIN sys.objects AS so ON OBJECT_NAME(ac.OBJECT_ID) = so.name
WHERE is_identity = 1 AND so...
|
-
Dave Vroman learned 2 Months ago through Blogs | 1 Point
In this post I am going to explain TakeWhile Operator in details. TakeWhile is one of partitioning operator available in Linq. It will take sequence until condition becomes false. Here is the example for that. using System;
using System.Collections....
|
-
Dave Vroman Liked 2 Months ago through Blogs | 1 Point
In this post I am going to explain TakeWhile Operator in details. TakeWhile is one of partitioning operator available in Linq. It will take sequence until condition becomes false. Here is the example for that. using System;
using System.Collections....
|
-
Dave Vroman learned 2 Months ago through Blogs | 1 Point
I have been playing around linq and I have found great method call SkipWhile method. SkipWhile methods skips particular element which matches condition in predicate this can be use full in condition where we need to skip elements on particular con...
|
-
Dave Vroman Liked 2 Months ago through Blogs | 1 Point
I have been playing around linq and I have found great method call SkipWhile method. SkipWhile methods skips particular element which matches condition in predicate this can be use full in condition where we need to skip elements on particular con...
|
|
|
|
|
|
|