|
|
Browse by Tags
All Tags » Meta.Columns
-
I'm trying to implement a cached where clause with parameters that get converted to esParameters.
Code:ItemFilter filter = new ItemFilter();
filter.WhereClause = ''[issueType_id] IN (@issueList)'';
filter.AddParameter(''issueList'', ''2,3,5,6,7,8,9'');
filter.Save();
IssueCollection coll = new IssueCollection(); ...
-
Hello all,
I am trying to create a function that accepts an entity collection populated with certain data that will be used in turn to create a where clause that is based off the populated field/column name and its value. My current code receives a collection loop through it looking for fields that have data and extracting a field name as a ...
|
|
|