Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 709 Bytes

File metadata and controls

31 lines (22 loc) · 709 Bytes

keywords: range,filtering data, where

Name in Migrated Code: Where.Add
Location in Migrated Class: InitializeDataView

Examples:

Products.ProductID - ProductID column from Products table
pi_ProdID - Parameter

Range From and To are equal

Where.Add(Products.ProductID.IsEqualTo(pi_ProdID));

Range To only

Where.Add(Products.ProductID.IsLessOrEqualTo(pi_ProdID));

Range From only

Where.Add(Products.ProductID.IsGreaterOrEqualTo(pi_ProdID));

See Also: