You need to sign in to do that
Don't have an account?
RaviKumar
Can we Use DML(Delete) on Map Collection Type
Can't we delete Records by using Map Collection Type....?
Map<Id, Account> m = new Map<Id,Account>([Select id from Account Limit 3]);
delete m;
How to achieve by using Map?
Map<Id, Account> m = new Map<Id,Account>([Select id from Account Limit 3]);
delete m;
How to achieve by using Map?
Best Answer chosen by RaviKumar
bob_buzzard
You can't use a map, but you can simply pass the values list from the map as follows: