Amazon.DynamoDBv2.DocumentModel.Filter.AddCondition C# (CSharp) Méthode

AddCondition() public méthode

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
Résultat void
        public void AddCondition(string attributeName, Condition condition)
        {
            Conditions[attributeName] = condition;
        }