FromQueryResult.cs 316 B

1234567891011121314
  1. using Ant.DbExpressions;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Ant.Query
  7. {
  8. class FromQueryResult
  9. {
  10. public DbFromTableExpression FromTable { get; set; }
  11. public IMappingObjectExpression MappingObjectExpression { get; set; }
  12. }
  13. }