quick search: dd acceleration
This commit is contained in:
parent
c442403882
commit
ee3edfae7b
9 changed files with 55 additions and 16 deletions
|
@ -141,7 +141,8 @@ namespace WebsitePanel.EnterpriseServer
|
|||
|
||||
//TODO START
|
||||
public static DataSet GetSearchObject(int actorId, int userId, string filterColumn, string filterValue,
|
||||
int statusId, int roleId, string sortColumn, int startRow, int maximumRows, string colType, string fullType, bool recursive)
|
||||
int statusId, int roleId, string sortColumn, int startRow, int maximumRows, string colType, string fullType,
|
||||
bool recursive, bool onlyFind)
|
||||
{
|
||||
return SqlHelper.ExecuteDataset(ConnectionString, CommandType.StoredProcedure,
|
||||
ObjectQualifier + "GetSearchObject",
|
||||
|
@ -156,7 +157,8 @@ namespace WebsitePanel.EnterpriseServer
|
|||
new SqlParameter("@MaximumRows", maximumRows),
|
||||
new SqlParameter("@Recursive", recursive),
|
||||
new SqlParameter("@ColType", colType),
|
||||
new SqlParameter("@FullType", fullType));
|
||||
new SqlParameter("@FullType", fullType),
|
||||
new SqlParameter("@OnlyFind", onlyFind));
|
||||
}
|
||||
|
||||
//TODO END
|
||||
|
|
|
@ -319,10 +319,12 @@ namespace WebsitePanel.EnterpriseServer
|
|||
|
||||
//TODO START
|
||||
public static DataSet GetSearchObject(int userId, string filterColumn, string filterValue,
|
||||
int statusId, int roleId, string sortColumn, int startRow, int maximumRows, string colType, string fullType)
|
||||
int statusId, int roleId, string sortColumn, int startRow, int maximumRows, string colType,
|
||||
string fullType, bool onlyFind)
|
||||
{
|
||||
return DataProvider.GetSearchObject(SecurityContext.User.UserId, userId,
|
||||
filterColumn, filterValue, statusId, roleId, sortColumn, startRow, maximumRows, colType, fullType, false);
|
||||
filterColumn, filterValue, statusId, roleId, sortColumn, startRow,
|
||||
maximumRows, colType, fullType, false, onlyFind);
|
||||
}
|
||||
//TODO END
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue