DbTable.cs 318 B

12345678910111213141516
  1. using Ant.Utility;
  2. namespace Ant.DbExpressions
  3. {
  4. [System.Diagnostics.DebuggerDisplay("Name = {Name}")]
  5. public class DbTable
  6. {
  7. string _name;
  8. public DbTable(string name)
  9. {
  10. this._name = name;
  11. }
  12. public string Name { get { return this._name; } }
  13. }
  14. }