我在使用数据行时遇到了一些问题 - 所有数据都没有显示?
我在文件中有这个:
this.friendData = DatabaseClient.ReadDataTable("SELECT users.Id,users.username,users.motto,users.look,users.last_online FROM users JOIN friendships ON users.Id = friendships.user_two_id WHERE friendships.user_one_id = '" + num + "'");
然后是另一个文件:
DataRow[] DataRow_ = Session.GetUser().Data.friendData.Select("id = 8");
当我尝试这个时:
Console.WriteLine(DataRow_[0]["username"]);
打印出来:“gassu”但我的用户名是“TestAccount”
答案 0 :(得分:0)
试试这个:
Console.WriteLine(DataRow_[0]["username"]);