Mercurial > pub > bltoolkit
annotate Source/Data/Linq/ExpressionQueryImpl.cs @ 9:1e85f66cf767 default tip
update bltoolkit
author | nickolay |
---|---|
date | Thu, 05 Apr 2018 20:53:26 +0300 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 using System.Linq.Expressions; | |
3 | |
4 namespace BLToolkit.Data.Linq | |
5 { | |
6 class ExpressionQueryImpl<T> : ExpressionQuery<T>, IExpressionQuery | |
7 { | |
8 public ExpressionQueryImpl(IDataContextInfo dataContext, Expression expression) | |
9 { | |
10 Init(dataContext, expression); | |
11 } | |
12 | |
13 //public new string SqlText | |
14 //{ | |
15 // get { return base.SqlText; } | |
16 //} | |
17 | |
18 //#if OVERRIDETOSTRING | |
19 | |
20 public override string ToString() | |
21 { | |
22 return base.SqlText; | |
23 } | |
24 | |
25 //#endif | |
26 } | |
27 } |