次のコードを使用して、.NETBusinessConnectorからレコード数を取得しています。
DynRec = DynAx.CreateAxaptaRecord("AddressCountryRegion");
DynRec.ExecuteStmt("select count(Name) from %1 where %1.Name like'I*'");
if (DynRec.Found)
MessageBox.Show((string)DynRec.get_Field("Name"));
それへのより良い方法はありますか?たとえば、レコード数を整数として取得しますか?