Amazon.DynamoDBv2.DocumentModel.Filter.AddCondition C# (CSharp) Method

AddCondition() public method

Adds a condition for a specified attribute. If a condition for the attribute already exists, it will be replaced with the new condition.
public AddCondition ( string attributeName, Condition condition ) : void
attributeName string Target attribute name
condition Condition Condition to be added
return void
        public void AddCondition(string attributeName, Condition condition)
        {
            Conditions[attributeName] = condition;
        }