Scenario: You have a DataTable containing sales data for a year. You need to create a DataView that displays only the sales records for a specific region. Which property of the DataView would you use to achieve this?

  • AllowNew
  • RowFilter
  • RowStateFilter
  • Sort
The correct option is "RowFilter". This property allows you to specify a filter expression to restrict which rows are viewed in the DataView. By setting the RowFilter property to a condition that filters records based on the specific region, you can achieve the desired outcome.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *