如题,每次研究前台技术都要建数据库、连接,太麻烦。

写这么一个东西,模仿后台Model,上课的时候研究前台内容。甚好。

数据库类:

class myDatabase
    {
        public List<Person> t1 { get; set; }
        public myDatabase()
        {
            t1 = new List<Person>();
            t1.Add(new Person() { Xm = "zs", Nl = 20 });
            t1.Add(new Person() { Xm = "ls", Nl = 18 });
            t1.Add(new Person() { Xm = "ww", Nl = 19 });
        }
    }

实体类:

class Person
    {
        public string Xm { get; set; }
        public int Nl { get; set; }
    }

调试代码:

static void Main(string[] args)
        {
            myDatabase dd=new myDatabase();
            var a = from x in dd.t1 where x.Nl > 18 select x;
            foreach (var item in a)
            {
                Console.WriteLine(item.Xm+"\t"+item.Nl);
            }
            Console.ReadKey();
        }
02-11 19:26