请帮助我了解如何将我的代码转换为像这个线程一样工作

时间:2012-04-20 20:49:46

标签: c# asp.net sql sql-server tsql

我不确定是否需要创建一个全新的类或者什么,我是asp.net的新手。

这是我的代码:

public static IEnumerable<DistInfo> GetGeneralInformation ( int ClientID )
{
    using ( var conn = new SqlConnection( GetConnectionString() ) )
    using ( var cmd = conn.CreateCommand() )
    {
        conn.Open();
        cmd.CommandText =
        @"SELECT i.GoLiveDate, i.FirstBonusRun, i.TechFName, i.TechLName, i.TechEmail, i.TechPhone, i.WebISPFName, i.WebISPLName, 
          i.WebISPEmail, i.WebISPPhone, i.FullFillFName, i.FullFillLName, i.FullFillEmail, i.FullFillPhone, d.FName,
          d.LName, d.HomePhone, d.Email
          FROM NC_Information i
          INNER JOIN Distributor d
            ON d.DistID = i.ClientID
          WHERE clientID = @value";
        cmd.Parameters.AddWithValue( "@value", ClientID );
        using ( var reader = cmd.ExecuteReader() )
        {
            while ( reader.Read() )
            {
                var distInfo = new DistInfo
                {
                    AnticipatedLaunchDate = reader.GetDateTime( reader.GetOrdinal( "GoLiveDate" ) )
                };
                yield return distInfo;
            }
        }
    }
}

给出了你错过的装配或参考。这是否意味着我需要创建一个DistInfo类来使其工作?

新的DistInfo会产生与上述相同的错误。

抱歉,我是asp.net的新手,并且不太了解如何使我的工作像这篇文章一样:

I keep getting this error: "Invalid attempt to call Read when reader is closed"

2 个答案:

答案 0 :(得分:2)

你真的有一个名为DistInfo的班级吗?代码是否编译?如果没有,您将需要添加至少具有DateTime的新DistInfo类。类似的东西:

public class DistInfo
{
    public DateTime AnticipatedLaunchDate { get; set; }
}

如果您需要,可以在那里添加更多属性:)

答案 1 :(得分:2)

如果您只需要返回日期/时间信息,请定义您的方法

public static IEnumerable<DateTime> GetGeneralInformation(int ClientID)

简化你的阅读循环

int goLiveDateOrdinal = reader.GetOrdinal("GoLiveDate");
while (reader.Read()) {
    yield return reader.GetDateTime(goLiveDateOrdinal);
}

只有在必须返回多个值时才需要创建一个类。