skip to Main Content

I can't run a correct query on visual studio – Phpmyadmin

I think the problem is in the format. I have this code in the class: public DataTable CheckDate(DateTime day) { MySqlCommand command = new MySqlCommand("SELECT * FROM `appuntamenti` WHERE `date`='@date'", conn.getConnection()); command.Parameters.Add("@date", MySqlDbType.Date).Value = date; MySqlDataAdapter adapter = new MySqlDataAdapter();…

VIEW QUESTION

TLSharp Fetch Group List Issue – Telegram API

I can't fetch the full list of groups, the response returns only new groups my code : var dialogs = (TLDialogsSlice)await client.GetUserDialogsAsync(); var chats = dialogs.Chats .Where(c => c.GetType() == typeof(TLChat)) .Cast<TLChat>(); Console.WriteLine("Count : " + chats.Count()); i use this…

VIEW QUESTION
Back To Top
Search