このクエリがあります
var temp = from x in ActiveRecordLinq.AsQueryable<Circuits>()
where x.User_Created == false
orderby x.Description
select x;
NHibernate プロファイラーからの
クエリ期間
- データベースのみ:
7 ミリ秒 - 合計: 835 ミリ秒
生成されたクエリ:
SELECT this_.Circuit_ID as Circuit1_35_0_,
this_.[Description] as column2_35_0_,
this_.[User_Created] as column3_35_0_
FROM dbo.Circuit this_
WHERE this_.[User_Created] = 0 /* @p0 */
ORDER BY this_.[Description] asc
かなり単純なクエリのようです。6821 行が返されます。これを使用しているのは、ドロップダウンリストにデータを入力することだけです。
前もって感謝します