I am new to entity framework and learning it slowly. I have searched for this answer and do not find an answer. Let's say I have the following table definition:
Products
-----------
ProdID (PK, identity field)
ProdName
ProdSKU
Is it OK that the identity field is named "ProdID" or does it need to say "ID"? I've been told by another developer on my team that it MUST be called "ID" or entity framework won't work, but that makes no sense to me. Any advice is welcome.