As part of integration with another system I use System.Data.SqlClient library to create a command object and pass parameters on to it. One of the parameters every once in a while will get a DBNull.Value. It seems that AX does not offer a way to make static get_Value() call directly on the DBNull type. So the code like this won't compile:
System.DBNull nullValue = System.DBNull::get_Value();
Any idea how else I can do what I need?
*This post is locked for comments
I have the same question (0)