23 lines
513 B
C#
23 lines
513 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Zhaizj.Framework.ORM.Operation {
|
|
|
|
internal class ConditionInfo {
|
|
|
|
public Type Type { get; set; }
|
|
|
|
public String SelectedItem { get; set; }
|
|
public String WhereString { get; set; }
|
|
public Dictionary<String,Object> Parameters { get; set; }
|
|
public int Count { get; set; }
|
|
public String Sql { get; set; }
|
|
|
|
public ObjectInfo State { get; set; }
|
|
|
|
}
|
|
|
|
}
|