| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 548 人关注过本帖
标题:不知道缺少哪个命名空间??
只看楼主 加入收藏
huazai2012s
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2012-10-29
结帖率:33.33%
收藏
 问题点数:0 回复次数:4 
不知道缺少哪个命名空间??
using System;
using System.Collections.Generic;
using System.Data.Linq;
using System.Linq;
using System.Text;


namespace BegVCSharp_27_1_FirstLINQtoSQLquery
{
    class Program
    {
        static void Main(string[] args)
        {
            NorthwindDataContext NorthwindDataContext = new NorthwindDataContext();
            var queryresults = from c in NorthwindDataContext.customers
                              where c.country = "USA"
                              select new
                              {
                                  ID = c.customerID,
                                  Name = ,
                                  City = c.city,
                                  state = c.regin
                              };
            foreach (var item in queryresults)
            {
                Console.WriteLine(item);
            };
            Console.WriteLine("press enter/return to continue ...");
            Console.ReadKey();
        }
    }
}
Error    1    The type or namespace name 'NorthwindDataContext' could not be found (are you missing a using directive or an assembly reference?)    C:\Users\dell\AppData\Local\Temporary Projects\ConsoleApplication1\Program.cs    15    13    ConsoleApplication1
Error    2    The type or namespace name 'NorthwindDataContext' could not be found (are you missing a using directive or an assembly reference?)    C:\Users\dell\AppData\Local\Temporary Projects\ConsoleApplication1\Program.cs    15    61    ConsoleApplication1



搜索更多相关主题的帖子: 空间 命名 where 
2012-11-13 21:55
ZWYyj
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:9
帖 子:124
专家分:587
注 册:2012-8-10
收藏
得分:0 
你这个好像是LINQ to SQL查询,需要安装Northwind示例数据。要将Northwind数据库添加LINQ to SQL映射类。具体的看Csharp入门经典(第四版),有章节详细介绍。
2012-11-14 09:50
shangsharon
Rank: 9Rank: 9Rank: 9
来 自:湖北武汉
等 级:蜘蛛侠
威 望:7
帖 子:221
专家分:1261
注 册:2012-3-25
收藏
得分:0 
System.Data.Linq;
注意添加dll的引用.
2012-11-14 09:58
qarty
Rank: 1
等 级:新手上路
帖 子:2
专家分:4
注 册:2012-9-1
收藏
得分:0 
是不是空格多了,应该是空一行吧
2012-11-14 20:29
mmxo
Rank: 9Rank: 9Rank: 9
等 级:贵宾
威 望:13
帖 子:189
专家分:1090
注 册:2012-11-7
收藏
得分:0 
找不到实体类NorthwindDataContext,添加一个这个
图片附件: 游客没有浏览图片的权限,请 登录注册

然后把数据表拖进设计器,有必要再改写代码,保存,引用包含这个类的库或页面就o了

[ 本帖最后由 mmxo 于 2012-11-14 20:40 编辑 ]

为提高中华编程水平而奋斗
2012-11-14 20:35
快速回复:不知道缺少哪个命名空间??
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.033719 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved