I have 2 tables
POST (idpost, user, text) COMMENT (idcomment, idpost, text)
i want do delete all comment with post have a user like "usertest"
delete from COMMENT c join POST p on c.idpost = p.idpost
where p.user like 'usertest'
who i make this in subsonic 3???
i try something like this, but, offcourse, don't work hehehehehe
COMMENT.Delete(x => x.POST.where(y => y.user == "usertest"));