Title here
Summary here
This attribute defines that this property is used to store the lookup value of the property from the object used in the Source for a Lookup identified by the given lookupSourcePropertyName.
public class MyLookupData
{
[MatchColumn("Id")]
public string LookupId { get; set; }
[RetrieveColumn("Value")]
public string LookupValue { get; set; }
}
public class MyDataRow
{
public string Id { get; set; }
public string Value { get; set; }
}
This property is used to store the retrieved value from the lookup data.
Type | Name | Description |
---|---|---|
string | inputPropertyName | Name of the property in the lookup object |
Name of the property in the input data
Type | Description |
---|---|
string |
Name of the corresponding column in the lookup object.
Type | Description |
---|---|
string |