zoukankan      html  css  js  c++  java
  • Power Automate 中 CDS的 filter

    在flow中, 我们可以用ODATA来传query来筛选我们需要的内容

    支持的filter query 公式

    Operator Description
    eq Equal to
    ne Not equal to
    contains contains
    not contains Does not contains
    gt Greater than
    lt Less than
    ge Greater than or equal to
    le Less than or equal to
    and and
    or or
    startswith

    Start with the specified value

    endswith End with the specified value

     

    Contains

    contains(textfieldschemaname,’value’)

    Contains data (is not blank)

    textfieldschemaname ne null

    Does not contains

    not contains(textfieldschemaname,’value’)

    Does not contains (Is Blank)

    textfieldschemaname eq null

    Contains (Does not contains) for Option Set

    optionsetfieldschemaname eq optionsetnumericvalue
    
    optionsetfieldschemaname ne optionsetnumericvalue

     

    Contains with "OR", "AND" 

    contains(field1name,’value1′) or contains(field1name,’value2′)
    
    optionsetfieldname1 eq optionsetnumericvalue1 or optionsetfieldname1 eq optionsetnumericvalue2
    
    
    
    contains(field1name,’value1′) and contains(field1name,’value2′)
    
    optionsetfieldname1 eq optionsetnumericvalue1 and optionsetfieldname1 eq optionsetnumericvalue2

    Start with  / End with

    startswith(fieldname,’startvalue’)
    
    endwith(fieldname,’startvalue’)

    Greater than / Less than

    numberfield gt specificnumber
    
    datefield gt ‘specificdate’
    
    createdon gt ’10/08/2019 05:00′
    
     
    
    datefield lt ‘specificdate’
    
    numberfield lt specificnumber
    
    createdon lt ’10/08/2019

     

  • 相关阅读:
    转载阿里开源的分布式事务框架 Seata
    查看进程上的线程数量
    chmod命令
    查找端口与查找正在运行的进程
    可输入的文本框
    js 类和对象
    js 三维数组
    ajax
    ORACLE数据库主要的系统表和数据字典视图
    url 传参
  • 原文地址:https://www.cnblogs.com/TheMiao/p/14134147.html
Copyright © 2011-2022 走看看