Difference Between First() And FirstOrDefault()

The difference between First() and FirstOrDefault() is a major concept in Entity Framework.
 
Let's try both with an example. 
 
The major difference between First and FirstOrDefault is that First() will throw an exception if there is no result data for the supplied criteria whereas FirstOrDefault() will return the default value (null) if there is no result data.
 
First() will throw an exception if there is no result data, as you can see below.
 
Difference between First() and FirstOrDefault()
 FirstOrDefault() returns the default value (null) if there is no result data and you can see the result in the following screen.
 
Difference between First() and FirstOrDefault()