Example:
Condition:
IF A > B THEN
PRINT B
ELSE
PRINT A
This condition is written as a string in coloumn of the table in SQL.
I want to fetch this condition from the table and convert this condition to the C# Code as
If(A > B )
{
print B...........
}
else
{
print A...........
}
Where A and B are the Dynamic values passed in the C#.
Condition:
IF A > B THEN
PRINT B
ELSE
PRINT A
This condition is written as a string in coloumn of the table in SQL.
I want to fetch this condition from the table and convert this condition to the C# Code as
If(A > B )
{
print B...........
}
else
{
print A...........
}
Where A and B are the Dynamic values passed in the C#.
Comment