Linq in Array in c#

Linq can be implemented in array with c#, below is code example of linq with array. var GroupCount = Request.QueryString[“AllchkIDs”].ToString().Split(‘,’).Where(i => i !=…

Read more

Data merging Sql in Sql server

Below is the stored procedure of data maintenance sql server   USE [PCCAS] GO /****** Object: StoredProcedure [dbo].[sp_DataMaintenance_Insert_Update] Script Date: 05/06/2014 11:14:44 ******/…

Read more

Temp Data uses in MVC

Tempdata is a dictionary object which derives from TempDataDictionary,Tempdata is very uses full for below uses 1)Passing data from Action to Action in same…

Read more