Where can I find this definition in the Samples code? Trying to use the MyMail sample as a starting point for a web project I am working on. Since there is no Visual Studio solution for the sample projects that I have found, I cannot seem to find where in the code this is defined.
public
class EmailFolderRepository : BaseOleDBRepository<EmailFolderCollection>
Thanks,
Phil
Phil, You are correct, there isn't a solution file for the samples. The samples browser was built as a website using the 2.0 framework. You could create a blank solution in VS and add an existing website to that solution. This would give you the samples site wrapped by a solution file.
The BaseOleDBRepository code can be found at /App_Code/CS/InfraRealty/Data within the samples website. It looks like it was originally used in the InfraRealty (InfraProperties) project. Sorry for any confusion.
Ed