Exemplo n.º 1
0
        public void FindTopic()
        {
            TopicDal a  = new TopicDal(connectionString);
            var      gl = a.Find("Title");

            Assert.IsTrue(gl.Count == 0 || gl[0].ID != -1);
        }
Exemplo n.º 2
0
 static void Find(string str)
 {
     PrintJoinAll(topicDal.Find(str));
 }
Exemplo n.º 3
0
 public List <(long ID, string FullName, string Title, string Text)> Find(string str)
 {
     return(GetJoinAll(topicDal.Find(str)));
 }