OracleSemantics.cs 666 B

123456789101112131415161718192021222324
  1. using Ant.DbExpressions;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Reflection;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Ant.Oracle
  9. {
  10. public static class OracleSemantics
  11. {
  12. internal static readonly PropertyInfo PropertyInfo_ROWNUM = typeof(OracleSemantics).GetProperty("ROWNUM");
  13. internal static readonly DbMemberExpression DbMemberExpression_ROWNUM = DbExpression.MemberAccess(OracleSemantics.PropertyInfo_ROWNUM, null);
  14. public static decimal ROWNUM
  15. {
  16. get
  17. {
  18. throw new NotSupportedException();
  19. }
  20. }
  21. }
  22. }