Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MappingConditionOperator.cs « System.Data.Mapping « System.Data.SqlXml « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 609213d0fe78d3ff972e216a6d9cf15f5689cec6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// System.Data.Mapping.MappingConditionOperator
//
// Author:
//   Tim Coleman (tim@timcoleman.com)
//
// Copyright (C) Tim Coleman, 2003
//

#if NET_2_0

namespace System.Data.Mapping {
        public enum MappingConditionOperator 
        {
		LessThen,
		GreaterThen,
		LessThenOrEqual,
		GreaterThenOrEqual,
		Equal,
		NotEqual,
		Like,
		NotLike,
		IsNull,
		IsNotNull
        }
}

#endif // NET_2_0