The problem is, that I want to group partial class files in a way in the Solution Explorer, that visual Studio displays a [+] in front of the filename which I than can expand to see all other dependend files.
But my classes are shown in two rows below each other. (see below)
> CustomerServiceDao.cs
> CustomerServiceDao.Query.cs
The result I want to have is something like that.
+ CustomerServiceDao.cs
> CustomerServiceDao.Query.cs
Is there any naming convention which I have to follow in order to show the partial files grouped?
Thx in advance
EDIT: It works. That's great. But are there any naming conventions? e.g. ascx does it by default ...