- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
public IQueryable<Log> Select(Context context)
{
// Return list of entities
return (from l in context.Logs select l);
}
/// <summary>
/// Fetch page from Log table
/// </summary>
/// <param name="nStartRowIndex">Starting index of rows to fetch</param>
/// <param name="nMaxRows">Max number of rows</param>
/// <returns>IEnumerable of Log</returns>
public List<Log> SelectPage(int nStartRowIndex, int nMaxRows,
string strProperty, string strKeyword,
string strSort, string strSortDirection,
out int nTotalCount)
{
using (Context context = new Context())
{
var q = Select(context).Take (1000);
}
}
Lure Of Chaos 04.02.2011 11:47 # 0
bugmenot 04.02.2011 12:06 # −1
absolut 04.02.2011 12:26 # +1
abatishchev 04.02.2011 15:13 # 0
Lure Of Chaos 04.02.2011 15:25 # 0
минуту втыкал в "не-ни"
bugmenot 04.02.2011 15:28 # +3
Lure Of Chaos 04.02.2011 15:31 # +2
absolut 04.02.2011 15:53 # 0
Katsy 04.02.2011 20:49 # 0
context.Log.Take(1000)
koodeer 04.02.2011 21:06 # 0
Но раз уж просите, вот возможные варианты:
- параметры использовались, но после рефакторинга стали не нужны;
- это временная заглушка, потом код добавится.
Не?
Katsy 04.02.2011 21:09 # 0