Tuesday, 3 September 2024

get users list by workflowid

 WITH GroupedResults AS (

    SELECT w.*, 

           ROW_NUMBER() OVER (PARTITION BY WorkFlow_ID ORDER BY Approver_Sequence DESC) AS rn

    FROM tbl_WorkFlowMembers w

    WHERE Division_ID = 'MSV' AND Country_Code = 'MX'

)

No comments:

Post a Comment

calling or handling data without c# model

 calling or handling data without c# model Yes, it is possible to read data in a C# Web API without explicitly defining model classes for ev...