Ejemplo n.º 1
0
        internal List <string> GetTopicsIdList()
        {
            var query = TopicsTable.SelectTopicIds();

            var results = dBContext.ExecuteQuery(query);

            var topicsIds = new List <string>();

            for (int i = 0; i < results.Count; i++)
            {
                topicsIds.Add(results[i][0]);
            }

            return(topicsIds);
        }