So I am curious if anyone has any guidance or recomendations on how to name our typed lists and typed views, so that when they are generated they make sense to the users of our generated code?
For example, I have a table, MessageHistory. I want to build a typed list that contains come other information from related tables, so I build a typed list. Awesome.
But wait... I cant use MessageHistory because I already have a MessageHistory entity. I could create a new group and create the typed list in there but that feels odd.
So, I name my typed list "MessageHistoryList", but the generated code comes out to be "MessageHistoryListTypedListRow" which is indeed a mouthful...
So what are the rest of you all doing?