What is the best way to create a function for Azure Function that contains a desicion matrix inside and return a single value code?

  • Thread starter Thread starter Wilmer Palacios
  • Start date Start date
W

Wilmer Palacios

Guest
I will give you some context.

I have an app with a desicion matrix on excel, with a mater-detail database table style, so, I need to know:

1. The best data structure to use on C# language to manage that table.

2. How to code a function that returns an unique value based on the parameters of that data structure implemented.

3. All that implementation will be deployed on Azure using flows and azure functions.

Thank you so much!

| A | B | C | D | E | F | G | H | ...
-----------+---+---+---+---+---+---+---+----
Code01 | 0 | 1 | - | 1 | 0 | 1 | - | 1 + ...
Code02 | 1 | 0 | - | 0 | 0 | - | 1 | - +
...
Code-n | 1 | 0 | 1 | 1 | 1 | - | 1 | 1 + ...

Continue reading...
 
Back
Top