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
29
30
31
32
33
34
35
36
37
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Text;
|
| namespace CY.Infrastructure.Query
| {
| /// <summary>
| /// 查询参数
| /// </summary>
| public class Criterion
| {
|
| private string _propertyName;
| private object _value;
|
| public Criterion(string propertyName, object value)
| {
| _propertyName = propertyName;
| _value = value;
| }
| /// <summary>
| /// 参数
| /// </summary>
| public string PropertyName
| {
| get { return "@"+_propertyName; }
| }
| /// <summary>
| /// 参数值
| /// </summary>
| public object Value
| {
| get { return _value; }
| }
| }
| }
|
|