Wednesday, 11 July 2018

Join Query in Linq C#





using ConsoleApplication2.Model;

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;



namespace ConsoleApplication2

{

    class Program

    {

        static void Main(string[] args)

        {

            List<department> deplist = new List<department>

            {

                new department{deptid=1, deptname="HR"},

                new department{deptid=2, deptname="Marketing"},

                new department{deptid=3, deptname="IT"},

                new department{deptid=4, deptname="Accounts"},



            };



            List<Employee> emplist = new List<Employee>

            {

                new Employee{empid=101,name="ali",deptfkid=1},

                new Employee{empid=102,name="ahmed",deptfkid=2},

               new Employee{empid=103,name="ahsan",deptfkid=1},

               new Employee{empid=104,name="bilal",deptfkid=3},

               new Employee{empid=105,name="zahid",deptfkid=1},

                new Employee{empid=106,name="fahad",deptfkid=2},







            };





            var joinlist = emplist.Join(deplist, emp => emp.deptfkid, dep => dep.deptid, (emp, dep) => new

            {

                empid=emp.empid,

                name=emp.name,

                deptname=dep.deptname

           

            });



           



            foreach (var item in joinlist)

            {

                Console.WriteLine("-------------------");



                Console.WriteLine("id: "+item.empid);

                Console.WriteLine("Name: " + item.name);

                Console.WriteLine("Department: " + item.deptname);



                Console.WriteLine("-------------------");



            }



            Console.ReadKey();





        }

    }

}

----------------------------------------------------------------------------------------------------
 class department
    {
        public int deptid { get; set; }
        public string deptname { get; set; }

    }
-----------------------------------------------------------------------------------------------
 class Employee
    {

        public int  empid { get; set; }
        public string name { get; set; }
        public int deptfkid { get; set; }
    }

Monday, 9 July 2018

HR Management system part 2









click here to download source code

Group By and ToLookup in Linq C#





using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;



namespace ConsoleApplication1

{

    class student

    {

        public int studentID { get; set; }

        public string studentName { get; set; }

        public int Age { get; set; }

    }

    class Program

    {

        static void Main(string[] args)

        {

            List<student> li = new List<student>()

          {



             new student() { studentID = 5, studentName = "Ron" , Age = 21 },

            new student() { studentID = 6, studentName = "Chris",  Age = 18 },

             new student() { studentID = 7, studentName = "Rob",Age = 19  },

            new student() { studentID = 8, studentName = "Rob",Age = 21  },

            new student() { studentID = 1, studentName = "John", Age = 18 },

            new student() { studentID = 2, studentName = "Steve",  Age = 21 },

            new student() { studentID = 3, studentName = "Bill",  Age = 25 },

            new student() { studentID = 4, studentName = "Ram" , Age = 19 },

            new student() { studentID = 9, studentName = "Bill",Age = 19  },



        };



           // var agegroup = li.GroupBy(x => x.Age).ToList();

            var agegroup = li.ToLookup(x => x.Age).ToList();

            foreach (var group in agegroup)

            {

                Console.ForegroundColor = System.ConsoleColor.Green;



                Console.WriteLine("====AGE:"+group.Key+"====");

                Console.ForegroundColor = System.ConsoleColor.Red;



                foreach (var item  in group)

                {

                    Console.WriteLine(item.studentName);

                }

               

            }





     





        }

    }

}


Order by, Order by Descending, then by and then by Descending in linq c#



using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;



namespace ConsoleApplication1

{

    class Program

    {

        static void Main(string[] args)

        {

            List<student> li = new List<student>()

          {



             new student() { studentID = 5, studentName = "Ron" , Age = 31 },

            new student() { studentID = 6, studentName = "Chris",  Age = 17 },

             new student() { studentID = 7, studentName = "Rob",Age = 19  },

            new student() { studentID = 8, studentName = "Rob",Age = 21  },

            new student() { studentID = 1, studentName = "John", Age = 18 },

            new student() { studentID = 2, studentName = "Steve",  Age = 21 },

            new student() { studentID = 3, studentName = "Bill",  Age = 25 },

            new student() { studentID = 4, studentName = "Ram" , Age = 20 },

         

            new student() { studentID = 9, studentName = "Bill",Age = 19  },



        };



           // var list = li.OrderBy(x => x.studentID).ToList();

          //  var list = li.OrderByDescending(x => x.studentName).ToList();

          //  var list = li.OrderByDescending(x => x.studentName).ThenBy(x=>x.Age).ToList();

            var list = li.OrderByDescending(x => x.studentName).ThenByDescending(x=>x.Age).ToList();

            foreach (var item in list)

            {

                Console.WriteLine("id: "+item.studentID+"---Name: "+item.studentName+"---age:"+item.Age);

            }



     





        }

    }

}

--------------------------------------------------------------------------------------------------------------
 public int studentID { get; set; }
        public string studentName { get; set; }
        public int Age { get; set; }

Sunday, 8 July 2018

Introduction to Linq query in C#



using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading.Tasks;



namespace ConsoleApplication1

{

    class Program

    {

        static void Main(string[] args)

        {

            List<student> li = new List<student>()

          {



            new student() { studentID = 1, studentName = "John", Age = 18 },

            new student() { studentID = 2, studentName = "Steve",  Age = 21 },

            new student() { studentID = 3, studentName = "Bill",  Age = 25 },

            new student() { studentID = 4, studentName = "Ram" , Age = 20 },

            new student() { studentID = 5, studentName = "Ron" , Age = 31 },

            new student() { studentID = 6, studentName = "Chris",  Age = 17 },

            new student() { studentID = 7, studentName = "Rob",Age = 19  },

        };





            List<student> teenagerlist = li.Where(x => x.Age > 12 && x.Age < 20).ToList();

            Console.WriteLine("Teenager students: ");

            foreach (student item in teenagerlist)

            {

                Console.WriteLine("Name: "+item.studentName);

            }





        }

    }

}

----------------------------------------------------------------------------------------------------------------
class student
    {
        public int studentID { get; set; }
        public string studentName { get; set; }
        public int Age { get; set; }
    }

Pass Dynamically Added Html Table Records List To Controller In Asp.net MVC

Controller Code: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using ...