I want to delete multiple records of an object...How should I do it.
public class del_acc { public List<String> sel_id{get;set;} set<id> sid = new set<id>(); List<Account> accIdList = new List<Account>(); public void deleteacc() { if(sel_id != '') { List<Account> acc = new List<Account>(id=sel_id); delete acc; } } }