So I know that Find() is only a List method, whereas First() is an extension for any IEnumerable. I als
Find()
List
First()
IEnumerable
1- Find() returns Null if the entity is not in the context but First() will throw an exception 2- Find() returns entities that have been added to the context but have not yet been saved to the database
Null