I have this method:
[Route("Delete")]
public IHttpActionResult Delete()
{
}
What I would like to do is to delete from three tables that are here:
public System.Data.Entity.DbSet<SampleSentence> SampleSentences { get; set; }
public System.Data.Entity.DbSet<Synonym> Synonyms { get; set; }
public System.Data.Entity.DbSet<WordForm> WordForms { get; set; }
Is there a delete function in EF6 that I can use to delete all the rows or should I somehow make a SQL call?