I have seen this issue twice now and want to see what a best practice is for resolving this naming convention. Suppose I have an ORM (Linq to SQL in this case) and I map a table called User. Then I create my POCO called User also. Although the mapped table exists in something like
MyApp.Data.User
and the POCO resides in something like
MyApp.Objects.User
I realize one can do a full namespace identification for either throughout the code, but do you have a sensible naming convention so you can tell easily which is the table mapping and which is the POCO? Thanks!