string _lastWhere; protected override void OnEnterRow() { var where = ENV.Utilities.FilterHelper.ToSQLWhere(this, Where); if (where != _lastWhere) { _lastWhere = where; _rowCount = 0; ReadAllRows(() => _rowCount++); } } Number _rowCount = 0; public Number GetRowCount() => _rowCount;
--
You received this message because you are subscribed to the Google Groups "Migrated By Firefly" group.
To unsubscribe from this group and stop receiving emails from it, send an email to migrated-by-fir...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/migrated-by-firefly/a8e2200c-bbf0-4b45-8651-7576a4638fb1n%40googlegroups.com.
Could I please ask with regards to this line:
var where = ENV.Utilities.FilterHelper.ToSQLWhere(this, Where);
Is there any scenario in which you can think of that influences the result of that with regards to filters that are added to the actual Grids on the forms? I have one projects whereby this result of where includes the filters that are added on the Grid controls but in another project the result of where does NOT included filters added to the Grid on the form but I'm struggling to determine why.
To view this discussion visit https://groups.google.com/d/msgid/migrated-by-firefly/d914278b-f576-41d5-bf71-2e05bcbed64an%40googlegroups.com.