陈斌彬的技术博客

Stay foolish,stay hungry

LinqtoSql类的简单例子

第一步:添加LinqtoSql类

1、创建一个控制台应用程序项目,下载一个NrothWind 数据库放到解决方案里面。然后点击控制台项目右键选择添加,选择类

img

img

2、此时,解决方案里的内容如下

img

img

img

img

img

img

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)
        {

            DataClasses1DataContext ctx = new DataClasses1DataContext();
            var q = from x in ctx.bb_tblAsset
                    where x.BaseStation == "20"
                    select new { x.SiteAlias, x.SiteX };

            if (q.Count() != 0)
            {
                foreach (var item in q)
                {
                    Console.WriteLine(item);
                }

            }
            Console.ReadKey();
        }
    }
}

Resource Reference