Use of ‘like’ in a if-statement

  • October 13, 2009
  • 1 Comment

In Ax it is possible to use the ‘like’ keyword in a if-statement. This would look like this:

1
2
3
4
if (purchTable.purchId like '09*')
{
    // Do something
}