Untitled

 avatar
unknown
plain_text
a year ago
358 B
2
Indexable
public int DeleteByColumn(string tableName, string columnName, string value)
{
    var command = new SqlCommand
    {
        CommandType = CommandType.Text,
        CommandText = "delete from " + tableName + " where " + columnName + " = " + value + ";",
        Connection = _connector.GetConnection()
    };
    return command.ExecuteNonQuery();
}
Leave a Comment