File tree 3 files changed +19
-17
lines changed
3 files changed +19
-17
lines changed Original file line number Diff line number Diff line change 7
7
using NHibernate . Hql . Ast ;
8
8
using NHibernate . Linq . Visitors ;
9
9
10
- namespace NHibernate . Linq
11
- {
12
- public class LinqExtensionMethodAttribute : Attribute
13
- {
14
- public string Name { get ; private set ; }
15
-
16
- public LinqExtensionMethodAttribute ( )
17
- {
18
- }
19
-
20
- public LinqExtensionMethodAttribute ( string name )
21
- {
22
- Name = name ;
23
- }
24
- }
25
- }
26
-
27
10
namespace NHibernate . Linq . Functions
28
11
{
29
12
public class FunctionRegistry
Original file line number Diff line number Diff line change
1
+ using System ;
2
+
3
+ namespace NHibernate . Linq
4
+ {
5
+ public class LinqExtensionMethodAttribute : Attribute
6
+ {
7
+ public LinqExtensionMethodAttribute ( )
8
+ {
9
+ }
10
+
11
+ public LinqExtensionMethodAttribute ( string name )
12
+ {
13
+ Name = name ;
14
+ }
15
+
16
+ public string Name { get ; private set ; }
17
+ }
18
+ }
Original file line number Diff line number Diff line change 654
654
<Compile Include =" Impl\SessionIdLoggingContext.cs" />
655
655
<Compile Include =" Linq\Expressions\AggregateExpressionNode.cs" />
656
656
<Compile Include =" Linq\EagerFetchingExtensionMethods.cs" />
657
+ <Compile Include =" Linq\LinqExtensionMethodAttribute.cs" />
657
658
<Compile Include =" Linq\TypeHelperExtensionMethods.cs" />
658
659
<Compile Include =" Linq\Visitors\NameUnNamedParameters.cs" />
659
660
<Compile Include =" Linq\NhRelinqQueryParser.cs" />
You can’t perform that action at this time.
0 commit comments