using Ant.Utility; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Ant.DbExpressions { [System.Diagnostics.DebuggerDisplay("Name = {Name}")] public class DbColumn { string _name; Type _type; public DbColumn(string name, Type type) { this._name = name; this._type = type; } /// /// 列名 /// public string Name { get { return this._name; } } /// /// 列值 /// public object Value { get; set; } /// /// 列的类型 /// public Type Type { get { return this._type; } } } }