找不到类型或命名空间名称“SqlConnection”(是不是缺少 using 指令或程序集引用?)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了找不到类型或命名空间名称“SqlConnection”(是不是缺少 using 指令或程序集引用?)相关的知识,希望对你有一定的参考价值。

填写了using System.Data.SqlClient;语句,还是这种错误怎么办

using System.Data;
using System.Data.SqlClient;
就这两个吧 我是没有碰到过这种错误
参考技术A 创建一个文件夹,命名为DLL,然后将sql连接所需的dll放进去,并且将导入的dll包含在项目中,最后重新生成。 参考技术B 直接用 System.Data.SqlClient.SqlConnection 定义变量;
System.Data.SqlClient.SqlConnection con = new System.Data.SqlClient.SqlConnection();
参考技术C using System.Data;
using System.Data.Sql;
加上这两个引用再试试!
参考技术D using System.Data;using System.Data.Sql;

在 Xamarin Studio 中找不到类型或命名空间名称“页面”

【中文标题】在 Xamarin Studio 中找不到类型或命名空间名称“页面”【英文标题】:The type or namespace name 'Page' could not be found in Xamarin Studio 【发布时间】:2014-07-23 08:41:27 【问题描述】:

我正在开发 Xamarin Studio 和它的初学者。我正在使用 Forms 制作跨平台应用程序。 ut 基本项目在我构建它时出现此错误“错误 CS0246:找不到类型或命名空间名称'页面'(您是否缺少 using 指令或程序集引用?)”如果有人知道答案,请帮助我。这是app.cs的代码:

using System;
using Xamarin.Forms;

namespace CrossPlatformAppForms

public class App

    public static Page GetMainPage ()    //This is the line where i'm getting the error
    
        return new ContentPage  
            Content = new Label 
                Text = "Hello, Forms !",
                VerticalOptions = LayoutOptions.CenterAndExpand,
                HorizontalOptions = LayoutOptions.CenterAndExpand,
            ,
        ;
    


MyApp.Android 中的另一件事是我收到目标框架不兼容的警告(.Net framework 4.5...)

【问题讨论】:

正如错误所说,您是否缺少对 Xamarin.Forms 的引用? The type or namespace name 'Xamarin' missing in xamarin studio 的可能重复项 @Cheesebaron 没有朋友,这不是我检查过的解决方案,并且 notj=hing 丢失了。可能是缺少任何 .dll 文件。 引用 IDE 的意思是……“你忘了实际引用程序集吗?!” 重复***.com/questions/23994273/… 【参考方案1】:

它不是 The type or namespace name 'Xamarin' missing in xamarin studio 的重复项(解决链接中问题的解决方案是在参考中添加 Xarmin.Forms.Addin.dll),但我目前在我的 Xamarin Studio 中也面临这个问题,我认为这与 .NET 4.5 框架的兼容性有关。

【讨论】:

这里没有答案或解决方案可以尝试,这将更适合作为评论。

以上是关于找不到类型或命名空间名称“SqlConnection”(是不是缺少 using 指令或程序集引用?)的主要内容,如果未能解决你的问题,请参考以下文章

找不到类型或命名空间名称“异步”[重复]

找不到类型或命名空间名称“readFullyStream”

找不到类型或命名空间名称“Windows”

在 Xamarin Studio 中找不到类型或命名空间名称“页面”

C# 找不到类型或命名空间名称“NUnit”

找不到类型或命名空间名称“ScriptBundle”(您是不是缺少 using 指令或程序集引用?)