-
Part 1 - What is LINQ - Slides
-
Part 2 - Writing LINQ Queries - Slides
-
Part 3 - Extension Methods - Slides
-
Part 4 - Aggregate Functions - Slides
-
Part 5 - Aggregate() Function - Slides
-
Part 6 - Restriction Operators - Slides
-
Part 7 - Projection Operators - Slides
-
Part 8 - SelectMany Operator - Slides
-
Part 9 - Select v/s SelectMany - Slides
-
Part 10 - Ordering Operators - Slides
-
Part 11 - Ordering Operators in LINQ - II - Slides
-
Part 12 - Partitioning Operators - Slides
-
Part 13 - Implement paging using skip and take operators - Slides
-
Part 14 - LINQ query deferred execution - Slides
-
Part 15 - Conversion Operators in LINQ - Slides
-
Part 16 - Cast and OfType operators in LINQ - Slides
-
Part 17 - AsEnumerable and AsQueryable in LINQ - Slides
-
Part 18 - GroupBy in LINQ - Slides
-
Part 19 - Group by multiple keys in linq - Slides
-
Part 20 - Element Operators in LINQ - Slides
-
Part 21 - Group Join in LINQ - Slides
-
Part 22 - Inner Join in LINQ - Slides
-
Part 23 - Difference between group join and inner join in linq - Slides
-
Part 24 - Left Outer Join in LINQ - Slides
-
Part 25 - Cross Join in LINQ - Slides
-
Part 26 - Set operators in LINQ - Slides
-
Part 27 - Union, Intersect and Except operators in LINQ - Slides
-
Part 28 - Generation Operators in LINQ - Slides
-
Part 29 - Concat operator in LINQ - Slides
-
Part 30 - SequenceEqual Operator in LINQ - Slides
-
Part 31 - Quantifiers in LINQ - Slides
-
Part 32 - LinqPad - Slides
Hi Venkat please discuss WCF Security,JSON,Rest Service & Design pattern
ReplyDeletecan u please upload linq to entities videos
ReplyDeleteHi sir can u please upload videos on reporting ,testing and SDLC videos
ReplyDeleteHow to make small project using sql server database in SharePoint.
ReplyDeleteDim foundemp = From emp In mylink.MainDBs
ReplyDeleteWhere emp.IqamaNo.ToString.StartsWith(SearchText.Text)
Select emp
Dear Mr. Venkat,
Good Day
i am continuous viewer of your lessons, i have pasted a linq to sql query in vb.net. in which iqamano is float , but results is always zero.
pls help me to solve this problem.
Hi i am trying to get data from sqlserver db by using linq, I am passing datetime object in where clause but its not returning any data please help.. Positing my linq query.
ReplyDeletevar sdate = Convert.ToDateTime("13/01/2016");
var outerRecord = (from c in vtconnect.mastervt_backup.Take(100)
where (c.Dated >= sdate)
select c).ToList();
Class Property:
public Nullable Dated { get; set; }
i am using datafirst approach of entity framework.
I also want to know that is there any way i can change data type of my autogenerated entity, without updating my model.
Please help..... Ravinder