A lambda expression is simply shortcut syntax for an anonymous method. Anonymous methods look like this:
delegate(params) {method body}
The equivalent lambda expression would look like this:
params => method body
In short, all lambda expressions are anonymous methods, but it is possible to have an anonymous method that is not written in lambda syntax (like the first example above). Hope this is helpful!