>= (Greater Than or Equal To)
.NET Framework 4.5
Compares two expressions to determine whether the left expression has a value greater than or equal to the right expression.
expression>=expression
- expression
- Any valid expression. Both expressions must have implicitly convertible data types.
true if the left expression has a value greater than or equal to the right expression; otherwise, false.
The following Entity SQL query uses >= comparison operator to compare two expressions to determine whether the left expression has a value greater than or equal to the right expression. The query is based on the AdventureWorks Sales Model. To compile and run this query, follow these steps:
-
Follow the procedure in How to: Execute a Query that Returns StructuralType Results.
-
Pass the following query as an argument to the
ExecuteStructuralTypeQuerymethod:
SELECT VALUE product FROM AdventureWorksEntities.Products
AS product where product.ListPrice >= @price
Build Date: