问题标签 [notsupportedexception]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
1099 浏览

c# - 异常详细信息:System.NotSupportedException:Like 方法不支持 null

如果查询为空,我正在检查搜索框。如果为空,则显示查询空错误消息。但是,它绕过了我对空查询的所有检查并直接进入我的 ExecuteQuerySearch 方法,然后在位于我的 SearchHelper.cs 中的搜索方法中出现错误(类似方法不支持 null。)。它不喜欢空对象正在通过我的搜索方法

SearchHelper.cs 中我的 ExecuteQuerySearch 方法的一部分:

我想在执行搜索方法之前进行检查,但感谢任何建议或帮助。谢谢!

0 投票
1 回答
927 浏览

c# - System.NotSupportedException 使用日期时间?在 Linq to Entity 中

我有一个System.NotSupportedException使用DateTime?在Linq to Entities.

我原来的方法是这样的:

NotSupportedException出于某种原因,当 linq to entity 执行该DateTime部分时,我遇到了异常 ( )。

TransportOrderLine.StartDatePlanned是类型DateTime

我也已经像这样拆分了我的代码:

我也试过这个:

任何人都知道解决方案。

感谢您的关注 :)

0 投票
2 回答
435 浏览

c# - 文件路径包含无效字符

我创建了一个创建压缩备份的小程序。请参阅下面的编辑。

文件路径中有一个冒号,NotSupportedException当我尝试运行它时会生成一个冒号。
如果我有以下路径:
C:\Testing facility\SampleDirectory
我可以用什么替换:,以便我的程序处理文件路径,但仍能找到正确的目录/文件?

这篇 MSDN 文章中显示的示例没有说明冒号或任何其他非法字符的任何问题,我做错了什么吗?

我的目录压缩代码如下:

编辑:
经过更多调试,我意识到文件字符串由于某些原因被双重附加。通过这个,我的意思是sourcePath已经获得了价值:
"C:\\Testing facility\\SampleDirectory"
备份路径发生了类似的事件。

为什么会这样,我能做些什么来解决它?

0 投票
1 回答
1509 浏览

c# - system.notsupportedexception 不支持给定路径的格式

在我的聊天程序中,我需要将文件发送给其他用户,但我遇到了问题。当我尝试发送文件时,Visual Studio 给我一个异常,不支持给定路径的格式;

请帮忙。

0 投票
2 回答
367 浏览

c# - 无法在 lambda 表达式中获取计数 - NotSupportedException

我正在尝试使用以下查询获取每个学生的科目数:

但我遇到了一个例外

EntityFramework.SqlServer.dll 中出现“System.NotSupportedException”类型的未处理异常

附加信息:LINQ to Entities 不支持指定的类型成员“主题”。仅支持初始化器、实体成员和实体导航属性

0 投票
2 回答
566 浏览

c# - getcurrentDirectory() 的 NotSupportedException 错误

我在 Windows 8 笔记本电脑上使用 VS 2008 并NotSupportedException在调试器遇到这行代码时得到一个System.IO.Directory.GetCurrentDirectory()。谁能告诉我为什么会出现这个错误?

错误图像

0 投票
1 回答
1024 浏览

c# - NotSupportedException 未被用户代码异常处理

我正在尝试将 Document.cookie 的值存储到我的 c# 代码中的字符串变量中。这里的想法是浏览 Internet Explorer 浏览器中的每个选项卡,然后从选项卡中获取 cookie 信息。所以我有以下内容,

现在这适用于代码的初始运行,但是当它再次在同一个会话中运行时,它会失败并在上面的最后一行代码中遇到 NotSupportDeskException,这是声明和初始化字符串 cookie 的地方(第 134 行)。有没有解决的办法?

堆栈跟踪如下,在 System.Dynamic.ComRuntimeHelpers.CheckThrowException(Int32 hresult, ExcepInfo& excepInfo, UInt32 argErr, String message) 在 CallSite.Target(Closure , CallSite , ComObject ) 在 CallSite.Target(Closure , CallSite , Object )在 Somefile.cs:line 134 中的 hhsoutlookadin.ThisAddIn.d__3.MoveNext() 处。消息是“HRESULT 异常:0x800A01B6”。

0 投票
1 回答
204 浏览

xml - FluentMigrator NotSupportedException - 映射 XML 列

我在一个项目中使用 FluentMigrator,当我尝试在现有表中添加新的 xml 列时,我在更新数据库时遇到了一些问题。

我正在使用:

  • FluentMigrator 1.3.1.0
  • FluentMigrator.Tools 1.3.1.0
  • SQL Server 2014
  • .Net 框架 4.5

迁移器是使用 SqlServer2012ProcessorFactory 配置的。

在我的一次迁移中,我有以下代码:

但是,当我运行这段代码时,我得到了这个异常:

异常详细信息:System.NotSupportedException:不支持的 DbType 'Xml'

任何人都遇到过这个问题或知道什么是错的?

0 投票
1 回答
1527 浏览

c# - System.Web.Routing.RouteCollection 和 System.Web.Mvc.RouteCollectionExtensions 都具有相同的简单名称“IgnoreRouteInternal”

我有一个 ASP.NET MVC 项目,我已经将近两个月没有工作了。只要我不更改任何代码,在浏览器中调试就可以正常工作。当我修改任何代码时,即使添加空格,我都会收到此错误:

异常发生在这一行:

我能想到的唯一一件事是更改路由设置可能是我在再次选择这个项目之前所做的最后一件事,据我所知,那里的一切都很正常。另一件事是我正在使用 TortiseGit 和 bitbucket,但我看不出会有什么影响。我有另一个项目具有类似的设置,没有问题。

如果我犯了错误,这是我的 RouteConfig.cs

我不知道如何解决这个问题,任何建议将不胜感激。

0 投票
2 回答
1287 浏览

python-2.7 - NotSupportedError when trying to build primary index in N1QL in Couchbase Python SDK

I'm trying to get into the new N1QL Queries for Couchbase in Python. I got my database set up in Couchbase 4.0.0.

My initial try was to retreive all documents like this:

But this produces a OperationNotSupportedError:

Here the version numbers of everything I use:

Anyone an idea what might have went wrong here? I could not find any solution to this problem up to now.

There was another ticket for node.js where the same issue happened. There was a proposal to enable n1ql for the specific bucket first. Is this also needed in python?