zoukankan      html  css  js  c++  java
  • Compare the value of entity field.

        public class Program
        {
            static void Main(string[] args)
            {
                Program p = new Program();
                p.Test();
                Console.ReadLine();
            }
    
            public void Test()
            {
                List<People> initPeopleList = new List<People>();
                People people = new People("Richy",25,"Shanghai");
                initPeopleList.Add(people);
                people = new People("Sherry",25,"Shanghai");
                initPeopleList.Add(people);
    
                List<People> newPeopleList = new List<People>();
                people = new People("Kim",25,"Shanghai");
                newPeopleList.Add(people);
                if (CompareEntity(initPeopleList, newPeopleList))
                {
                    Console.WriteLine("The two entity has some field is not equal.");
                }
                else
                {
                    Console.WriteLine("The two entity are the same.");
                }
            }
            public bool CompareEntity(List<People> initPeopleList,List<People> newPeopleList)
            {
                bool DiffFlag = false;
                if (initPeopleList != null && newPeopleList != null)
                {
                    List<PropertyInfo> infoList = typeof(People).GetProperties().ToList();
                    foreach (var initPeople in initPeopleList)
                    {
                        var commonList = newPeopleList.Where(s => (s.Id == initPeople.Id)).FirstOrDefault(); //We assume id is the primary key.
                        if (commonList != null)
                        {
                            foreach (var propertyInfo in infoList)
                            {
                                var initValue = initPeople.GetType().GetProperty(propertyInfo.Name).GetValue(initPeople, null);
                                var newValue = commonList.GetType().GetProperty(propertyInfo.Name).GetValue(commonList, null);
                                if (initValue != null && !initValue.Equals(newValue))
                                {
                                    DiffFlag = true;
                                    break;
                                }
                            }
                        }
                        else
                        {
                            DiffFlag = true;
                            break;
                        }
                    }
                }
                else if((initPeopleList == null || newPeopleList == null) && (initPeopleList!=newPeopleList))
                {
                    DiffFlag=true;
                }
    
                return DiffFlag;
            }
    
        }
    
        public class People
        {
            public string EnglishName { get; set; }
            public int Id { get; set; }
            public string Address { get; set; }
    
            public People(string name, int Id, string address)
            {
                this.EnglishName = name;
                this.Id = Id;
                this.Address = address;
            }
        }
    

      

  • 相关阅读:
    XNA之3D文字
    SQL2005调用C#编写的DLL
    C#绘图工具之Rotate
    ASP.NET中的WebService
    数据库同步之复制技术
    C#之TCP消息的发送和接受
    Tsql清空表数据的两种方式truncate and delete
    Code First Migrations数据迁移方法
    MSSQLSERVER跨服务器连接
    windows下wget命令行下载工具的使用
  • 原文地址:https://www.cnblogs.com/bg57/p/3444553.html
Copyright © 2011-2022 走看看