In active record to write a model you write:
[ActiveRecord("TableName")]
public class Model
{
[Property("SomeField")]
public virtual string SomeField { get; set; };
[Property("SomeLazyField"), Lazy= true]
public virtual string SomeLazyField { get; set; };
}
If the field is lazy it must fetch it on the first access, so how does the Property attribute override the property and fetches the SomeLazyField value?