Hi,
I had a code in my plugin, and my plugin was built as preopertaion.
The senario is, i always use
if(entity.contains("attributename"))
and my code did enter this if statement last night even when there was no value in that attribute, it happend suddenly and i am unable to figure out why this happened. So to resolve the issue I went and modified the line
If(entity.contains("attributename") && entity.Attribute["attributename"] != null)
then it did not entered this statement and all worked fine.
Can someone help me understand why sudden change was needed for me to implement.