vote up 2 vote down star

Hi!

I have a project called Data which is a data layer. In this project, all files are just lying in the top folder. I have enumerations, POCOs, repositories, partial classes and so on.

If i want to move those files into subfolders, what would be the preffered folder name for each folder? Is there any convention?

The "Repositories" folder is pretty obvious, but where should i keep POCOs and enumerations?

Thanks

flag

79% accept rate
1  
Although not directly related to your question, you should probably consider renaming your project to something more meaningful and in accordance to the Framework Design Guidelines. Now on to your question: FDG also gives advice on when and how to structure sub namespaces. stackoverflow.com/questions/1389458/… – Alfred Myers Sep 7 at 13:59

4 Answers

vote up 4 vote down

I tend to use project folders as a way of separating out sub namespaces. So in your case, perhaps a folder called Repositories, which has class in the Data.Repositories namespace. Note, for partial classes, each file needs to be in the same namespace.

link|flag
vote up 1 vote down

Best prectice is to divide entities in folders by object model meaning, not by type.

link|flag
vote up 1 vote down

A good practice is to name the folder after the name of the project.

Design Guidelines for Developing Class Libraries has a set of Guidelines for Names

The last item should be of paticular interest for you:

link|flag
vote up 1 vote down

If it is not clear how to group the classes by usage or object model meaning, just leave them all in one folder. Using subfolders don't give values if they don't organise the classes in a meaningful way.

Dividing folders by type, e.g. enumerations, POCOs, repositories, partial classes etc is not likely to be useful.

You may wish to use a subfolder for generated code that should not be edited.

Also remember you can have folders within the solution explorer that are not part of the file system. Given how costly (in time) it is in some source code control systems to move files between directories, I would consider starting of just using msdev folders until you are clear on the structure you want.

There is no need to put each enumeration in its own file, if an enumeration is only used by one class, it is valid to put it in the same file as the class. E.g the PersonSex enumeration can be put in the person.cs file. Likewise if you have a lot of small and closely related classes, consider putting them in the same file.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.