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 Parameters { get; set; } public int Count { get; set; } public String Sql { get; set; } public ObjectInfo State { get; set; } } }