单词表有 2 个字段:WORDID 和 LEMMA。此代码显示单词表中的所有记录。但我只想显示某些记录,例如SELECT * WORD WHERE WORDID=10
. 谁能建议我如何实现这一目标?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
ConsoleApplication4.DataSet1TableAdapters.wordTableAdapter kata = new DataSet1TableAdapters.wordTableAdapter();
foreach (ConsoleApplication4.DataSet1.wordRow row in kata.GetData())
{
System.Console.WriteLine(row.lemma);
}
System.Console.ReadLine();
}
}
}