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...........

}
...