123456789101112131415161718192021222324 |
- using Ant.DbExpressions;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ant.Oracle
- {
- public static class OracleSemantics
- {
- internal static readonly PropertyInfo PropertyInfo_ROWNUM = typeof(OracleSemantics).GetProperty("ROWNUM");
- internal static readonly DbMemberExpression DbMemberExpression_ROWNUM = DbExpression.MemberAccess(OracleSemantics.PropertyInfo_ROWNUM, null);
- public static decimal ROWNUM
- {
- get
- {
- throw new NotSupportedException();
- }
- }
- }
- }
|