Amazon.DynamoDBv2.DocumentModel.Filter.AddCondition C# (CSharp) Метод

AddCondition() публичный Метод

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
Результат void
        public void AddCondition(string attributeName, Condition condition)
        {
            Conditions[attributeName] = condition;
        }