+ configure.TypeDefinition<TableHiLoGenerator>(c=>
+ {
+ c.Alias = "HighLow";
+ c.Properties = new {max_lo = 99};
+ });
+
+ SELECT
clause SELECT
clause (
+ IList<Cat> cats = session.QueryOver<Cat>()
+ .Where( c => c.Name == "Tigger" )
+ .And( c => c.Weight > minWeight ) )
+ .List();
+
+
+ IList<Cat> cats = session.QueryOver<Cat>()
+ .Where( c => c.Name == "Tigger" )
+ .And( c => c.Weight > minWeight ) )
+ .List();
+
+
-
- SELECT
- TOP last (columns)
- FROM
- (SELECT (columns), ROW_NUMBER() OVER(ORDER BY {original order by, with un-aliased column names) as __hibernate_sort_row
- {original from}) as query
- WHERE query.__hibernate_sort_row > offset
- ORDER BY query.__hibernate_sort_row
-
-
-
- Note that we need to add explicitly specify the columns, because we need to be able to use them
- in a paged subselect. NH-1155
+ Note that we need to explicitly specify the columns, because we need to be able to use them in a paged subselect [NH-1155]
This dialect probably will not work with schema-export. If anyone out there can fill in the ctor with DbTypes to Strings that would be helpful.
- The SybaseDialect defaults the following configuration properties: + The dialect defaults the following configuration properties:- This dialect probably will not work with schema-export. If anyone out there - can fill in the ctor with DbTypes to Strings that would be helpful. -
- The SybaseDialect defaults the following configuration properties: -- This dialect probably will not work with schema-export. If anyone out there - can fill in the ctor with DbTypes to Strings that would be helpful. -
- The SybaseAnywhereDialect defaults the following configuration properties: -+ Author: Nikolaos Tountas +
++ In order to use this Driver you must have the Community.CsharpSqlite.dll and Community.CsharpSqlite.SQLiteClient assemblies referenced. +
++ Please check http://code.google.com/p/csharp-sqlite/ for more information regarding csharp-sqlite. +
+Entities returned as results are initialized on demand. The first SQL query returns - identifiers only. + identifiers only.
This is a good strategy to use if you expect a high number of the objects @@ -23882,7 +25214,7 @@