File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed
ExpressionBuilder/Interfaces Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 5
5
/// </summary>
6
6
public interface IFilterStatementConnection
7
7
{
8
- /// <summary>
9
- /// Defines that the last filter statement will connect to the next one using the 'AND' logical operator.
10
- /// </summary>
11
- IFilter And { get ; }
12
-
13
- /// <summary>
14
- /// Defines that the last filter statement will connect to the next one using the 'OR' logical operator.
15
- /// </summary>
16
- IFilter Or { get ; }
8
+ /// <summary>
9
+ /// Defines that the last filter statement will connect to the next one using the 'AND' logical operator.
10
+ /// </summary>
11
+ IFilter And { get ; }
12
+
13
+ /// <summary>
14
+ /// Defines that the last filter statement will connect to the next one using the 'OR' logical operator.
15
+ /// </summary>
16
+ IFilter Or { get ; }
17
17
}
Original file line number Diff line number Diff line change 1
- using System . ComponentModel . DataAnnotations ;
1
+ using ExpressionBuilder . Common ;
2
+ using System . ComponentModel . DataAnnotations ;
2
3
using System . Linq . Expressions ;
3
- using ExpressionBuilder . Common ;
4
4
5
5
namespace ExpressionBuilder . Interfaces ;
6
6
Original file line number Diff line number Diff line change @@ -13,12 +13,12 @@ public interface IPropertyCollection : ICollection
13
13
/// Type from which the properties are loaded.
14
14
/// </summary>
15
15
Type Type { get ; }
16
-
16
+
17
17
/// <summary>
18
18
/// ResourceManager which the properties descriptions should be gotten from.
19
19
/// </summary>
20
20
ResourceManager ResourceManager { get ; }
21
-
21
+
22
22
/// <summary>
23
23
/// Retrieves a property based on its Id.
24
24
/// </summary>
You can’t perform that action at this time.
0 commit comments