You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(QueryFilteris{Count:>0}&&Expressionis{Filter: not null})
296
+
{
297
+
thrownewInvalidOperationException("Cannot specify both QueryFilter and ExpressionFilter in the same operation configuration. Please use one or the other.");
/// <returns>This method is intended to be used only within expression definitions (such as LINQ expression trees) and should not be called at runtime.</returns>
thrownewNotSupportedException("The method 'Between' is intended for use only in LINQ expression trees and should not be called at runtime.");
54
+
}
55
+
56
+
/// <summary>
57
+
/// Indicates that the attribute exists in the DynamoDB item.
58
+
/// Intended for use in LINQ expressions to generate DynamoDB attribute_exists conditions.
59
+
/// This method is only used inside expression trees and should not be called at runtime.
60
+
/// </summary>
61
+
/// <param name="_">The object representing the attribute to check.</param>
62
+
/// <returns>True if the attribute exists; otherwise, false.</returns>
63
+
publicstaticboolAttributeExists(object_)=>thrownewNotSupportedException("This method is only intended for use in LINQ expression trees and should not be called at runtime.");
64
+
65
+
/// <summary>
66
+
/// Indicates that the attribute does not exist in the DynamoDB item.
67
+
/// Intended for use in LINQ expressions to generate DynamoDB attribute_not_exists conditions.
68
+
/// This method is only used inside expression trees and should not be called at runtime.
69
+
/// </summary>
70
+
/// <param name="_">The object representing the attribute to check.</param>
71
+
/// <returns>This method is intended to be used only within expression definitions (such as LINQ expression trees) and should not be called at runtime.</returns>
72
+
publicstaticboolAttributeNotExists(object_)=>thrownewNotSupportedException("This method is intended to be used only within expression definitions (such as LINQ expression trees) and should not be called at runtime.");
73
+
74
+
/// <summary>
75
+
/// Indicates that the attribute is of the specified DynamoDB type.
76
+
/// Intended for use in LINQ expressions to generate DynamoDB attribute_type conditions.
77
+
/// This method is only used inside expression trees and should not be called at runtime.
78
+
/// </summary>
79
+
/// <param name="_">The object representing the attribute to check.</param>
80
+
/// <param name="dynamoDbType">The DynamoDB attribute type to compare against.</param>
81
+
/// <returns>This method is intended to be used only within expression definitions (such as LINQ expression trees) and should not be called at runtime.</returns>
82
+
publicstaticboolAttributeType(object_,stringdynamoDbType)=>thrownewNotSupportedException("The method AttributeType is intended for use only in expression trees and should not be called at runtime.");
thrownewNotSupportedException("The 'Contains' method is not supported for constant extraction in expression trees. Use supported property or indexer access instead.");
0 commit comments