Closed hhaensel closed 2 years ago
Select table rows of a model based on selection criteria. Selection syntax is identical to rowselection
rowselection
selectrows!(model.table, model.selection, [1, 3, 10]) selectrows!(model.table, model.selection, "b", r"hello|World") selectrows!(model, :table, :selection, "b", r"hello|World") selectrows!(model, :table, "a", iseven) # assumes the existence of a field :table_selection
Select table rows of a model based on selection criteria. Selection syntax is identical to
rowselection