public bool Delete(long p_id) { DataCollections _col = new DataCollections(TABLE_NAME); _col.Add(DataTypes.NVarchar, "Id", FieldTypes.Criterion, p_id, "="); return(dao.DoDelete(_col)); }