Knowledge Base Category: Development

LinQ Join Query Into a Multidimensional Model

A customer can have multiple accounts, each account has multiple notes. On my Customer View, I want to see all the notes from all the accounts.

I have the following Objects:

Read more
				

Custom Exception Using Enumerator Instead of String

base can only call static methods
   
namespace MyCustomApp
{
    public class InvalidReportOperationException : Exception
    {
        public InvalidReportOperationException(InvalidReportOpertaionOptions option, int? id ) : base(MessageGenerator(option,id))
        {
... 						
						
Read more