... but I can't for the life of me figure it out.
I have an object that comes from an application which has a Status property, and within that property is Name and Key. So I can do things like object.Status.Name = x
.
I have created another of these objects within my site and currently the value of the status field is set to 0 by default. If I want to populate the Status field to at least get a specific value in the object.Status.Name
field how would I go about it?
object.Status.Name = x
doesn't seem to work and instead creates object.StatusName = x
when run.
Thanks in advance
Mike