gpt4 book ai didi

c# - '对象'不包含 'GetSqlXml' 的定义

转载 作者:太空宇宙 更新时间:2023-11-03 18:34:16 25 4
gpt4 key购买 nike

Visual Studio 不喜欢此代码。 =(

SqlXml sqlXml = reader["ScenarioData"].GetSqlXml();

它讨厌 GetSqlXml(); 部分,并抛出错误:

'object' does not contain a definition for 'GetSqlXml' and no extension method 'GetSqlXml' accepting a first argument of type 'object' could be found (are you missing a using directive or an assembly reference?)

我想我包括了所有必要的引用和 namespace 以及 dll 文件,但我就是无法让 VS 识别该函数。我的下一步是什么?

最佳答案

您需要提供列索引(the GetSqlXml method belongs to SqlDataReader):

SqlXml sqlXml = reader.GetSqlXml(0);

关于c# - '对象'不包含 'GetSqlXml' 的定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17842698/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com