| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Linq.Expressions;
- using System.Text;
- namespace SqlSugar
- {
- public class SubTop : ISubOperation
- {
- public bool HasWhere
- {
- get; set;
- }
- public ExpressionContext Context
- {
- get; set;
- }
- public Expression Expression
- {
- get; set;
- }
- public string Name
- {
- get
- {
- return "Top";
- }
- }
- public int Sort
- {
- get
- {
- if (this.Context is SqlServerExpressionContext || this.Context.GetType().Name.Contains("Access"))
- {
- return 150;
- }
- else if (this.Context is OracleExpressionContext) {
- return 401;
- }
- else
- {
- return 490;
- }
- }
- }
- public string GetValue(Expression expression)
- {
- if (this.Context is SqlServerExpressionContext|| this.Context.GetType().Name.Contains("Access"))
- {
- return "TOP 1";
- }
- else if (this.Context is OracleExpressionContext)
- {
- return (HasWhere?"AND":"WHERE")+ " ROWNUM=1";
- }
- else if (this.Context is PostgreSQLExpressionContext)
- {
- return "limit 1";
- }
- else if (this.Context.GetLimit()!=null)
- {
- return this.Context.GetLimit();
- }
- else
- {
- return "limit 0,1";
- }
- }
- }
- }
|