Elemento XML não presente e lista nula e Referência de objeto não definida para uma instância de um objeto

Como estou retirando os dados do campo xml, existem nós que podem não existir (porque o arquivo xml é gerado dinamicamente). o problema é quando procuro um nó e ele não está presente no arquivo, ele retorna uma lista nula e esta exceção: "d Referência de objeto não definida para uma instância de um objeto". Aqui está o código:

public static List<Transaction> getXmlTransactions(XElement n)
        {


            var transactions = n.Elements("Transaktion").Select(p => new Transaction()
                {
                    TransID = p.Element("TransID") != null ? p.Element("TransID").Value : String.Empty,
                    TypeTransaction = p.Element("TransArt") != null ? p.Element("TransArt").Value : String.Empty,
                    DateEntree = p.Element("BuchDat") != null ? p.Element("BuchDat").Value : String.Empty,
                    Montant = p.Element("BetragWAE") != null ? p.Element("BetragWAE").Value : String.Empty,
                    Devise = p.Element("BuchDat") != null ? p.Element("Waehrung").Value : String.Empty,
                    // BanqueCorespondante = p.Element("BuchDat") != null ? p.Element("Waehrung").Value : String.Empty,   Dans le compte
                    Pays = p.Element("GegenLandText") != null ? p.Element("GegenLandText").Value : String.Empty,
                    AbreviationPays = p.Element("GegenLand") != null ? p.Element("GegenLand").Value : String.Empty,
                    autresinfo = p.Element("Kommentar") != null ? p.Element("Kommentar").Value : String.Empty
                }).ToList();


                return transactions;



        } 

 public static List<Compte> getXmlComptes(XElement n)
        {


            var comptes = n.Elements("Konto").Select(p => new Compte()
            {
                NumCompte = p.Element("KtoNr") != null ? p.Element("KtoNr").Value : String.Empty,
                typeCompte = p.Element("KontoArt") != null ? p.Element("KontoArt").Value : String.Empty,
                DateOuverture = p.Element("KtoOeff") != null ? p.Element("KtoOeff").Value : String.Empty,
                IBAN = p.Element("IBAN") != null ? p.Element("IBAN").Value : String.Empty,
                Devise = p.Element("Waehrung") != null ? p.Element("Waehrung").Value : String.Empty,
                CommentairesCompte = p.Element("Kommentar") != null ? p.Element("Kommentar").Value : String.Empty,
                Trans = getXmlTransactions(p)
            }).ToList();


                return comptes;

        }

questionAnswers(1)

yourAnswerToTheQuestion