我正在使用 C# 和 sqlite 在 Visual Studio 上开发一个健身房会员计划。在每次员工登录尝试时,我希望程序检查 ExpiryDate(Customer 表中的属性) 小于今天日期的过期客户。这是我使用的一段代码:
string sql2 = "delete from Customer where ExpiryDate<' " + DateTime.Today + " ' ";
SQLiteCommand command2 = new SQLiteCommand(sql2, m_dbConnection);
command2.ExecuteNonQuery();