Skip to content
DataMiner DoJo

More results...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
Search in posts
Search in pages
Search in posts
Search in pages
Log in
Menu
  • Updates & Insights
  • Questions
  • Learning
    • E-learning Courses
    • Empower Replay: Limited Edition
    • Tutorials
    • Open Classroom Training
    • Certification
      • DataMiner Fundamentals
      • DataMiner Configurator
      • DataMiner Automation
      • Scripts & Connectors Developer: HTTP Basics
      • Scripts & Connectors Developer: SNMP Basics
      • Visual Overview – Level 1
      • Verify a certificate
    • Video Library
    • Books We Like
    • >> Go to DataMiner Docs
  • Expert Center
    • Solutions & Use Cases
      • Solutions
      • Use Case Library
    • Markets & Industries
      • Media production
      • Government & defense
      • Content distribution
      • Service providers
      • Partners
      • OSS/BSS
    • Agile
      • Agile Webspace
      • Everything Agile
        • The Agile Manifesto
        • Best Practices
        • Retro Recipes
      • Methodologies
        • The Scrum Framework
        • Kanban
        • Extreme Programming
      • Roles
        • The Product Owner
        • The Agile Coach
        • The Quality & UX Coach (QX)
    • DataMiner DevOps Professional Program
      • About the DevOps Program
      • DataMiner DevOps Support
  • Downloads
  • More
    • DataMiner Releases & Updates
    • Feature Suggestions
    • Climb the leaderboard!
    • Swag Shop
    • Contact
    • Global Feedback Survey
  • PARTNERS
    • All Partners
    • Technology Partners
    • Strategic Partner Program
    • Deal Registration
  • >> Go to dataminer.services

Filter DOM to return instances where the field matches one of the values in a set

Solved553 views30th January 2024
0
Julio Riambau [SLC] [DevOps Advocate]302 30th January 2024 0 Comments

Hi,

If we have a set of customers and we want to get only the DOM instances where the field customer matches one of the customers in the set.

Which filter could be used for that purpose?

Thanks in advance.

Julio Riambau [SLC] [DevOps Advocate] Selected answer as best 30th January 2024

1 Answer

  • Active
  • Voted
  • Newest
  • Oldest
2
Jens Vandewalle [SLC] [DevOps Enabler]9.44K Posted 30th January 2024 1 Comment

Hi Julio,

This is possible by making use of an ORFilterElement as shown in the example below.

var areaFilter = new ORFilterElement<DomInstance>(domainsLinkedToVsGroup.Select(d => DomInstanceExposers.FieldValues.DomInstanceField(SlcMediaOps.Sections.Area_Info.Domains).Contains(d)).ToArray());

Thomas Ghysbrecht [SLC] [DevOps Enabler] Edited comment 31st January 2024
Thomas Ghysbrecht [SLC] [DevOps Enabler] commented 31st January 2024

Some small side notes for this one. Make sure that the amount of OR clauses does not exceed 500. If that would be the case, you’ll have to split up the list and do multiple queries. Also keep in mind that with the code example above, you check if the collection (domainsLinkedToVsGroup in this case) has any items and do not use the filter if that collection is empty. Otherwise, the ORFilterElement will be created with an empty collection which makes it equivalent to a TRUEFilterElement, resulting in all items to be retrieved. If you execute this on a DOM manager that contains a million DOM instances, (and not use paging) this could cause problems. In the SLNetTypes.dll, there is a ‘Tools.RetrieveBigOrFilter’ method that you could use, which safeguards you from both these possible pitfalls.

Please login to be able to comment or post an answer.

My DevOps rank

DevOps Members get more insights on their profile page.

My user earnings

0 Dojo credits

Spend your credits in our swag shop.

0 Reputation points

Boost your reputation, climb the leaderboard.

Promo banner DataMiner DevOps Professiona Program
DataMiner Integration Studio (DIS)
Empower Katas
Privacy Policy • Terms & Conditions • Contact

© 2025 Skyline Communications. All rights reserved.

DOJO Q&A widget

Can't find what you need?

? Explore the Q&A DataMiner Docs