What is the best way to tackle field names that are multiple words (e.g. "First Name")?
Here are some ways that I have come across online...
1.) Pascal case (e.g. "FirstName")
2.) Camel Case (e.g. "firstName")
3.) Underscores (e.g. "first_name")
4.) No Separation (e.g. "firstname")
5.) Spaces (e.g. "first name") I already know the answer on this one!
6.) Other??
What approach does everyone here use?
TomTees