While I execute code I receive an error for variable template in "if" that says:
Value cannot be zero/null. Parameter: source
int id =Convert.ToInt32(GetCurrentColumnValue("ID"));
var query = string.Format("SELECT ttw_value1663 from mvv.tg_towary_mv where ttw_idtowaru = {0}", id);
var result = DbManager.Execute(query) ;
int[] template= result.GetValue<int[]>(0,0);
if (template.Contains(2181))
{
Detail.Visible=false;
}
I checked query using PgAdmin and I have 2 values inside. Data example: array int[2181,2182]
Okay, SQL is smart. I just converted array in query to text and it works just fine.
Complete code: