Let's say I have a Class called ModelBase
public class ModelBase
{
public string Name
{
get { return "one"; }
}
}
and I have a property named Model of type ModelBase.
Now to the question how do I Bind to the Name
property? The c# code would be this.Model.Name.
I've been trying to get this to work a long time, can some one enlighten me?