Using GetAttributeValue – same result, different meaning. Depending on the context
We can use entity[“<attributeName>”], or we can use entity.GetAttributeValue<T>(“<attributeName>”) The second option won’t produce an exception if the attribute is missing – it will return null instead. It will also return null if the value of that attribute is, actually, null. This may look all right, but there is a difference. So when does… Read More »