Mercurial > pub > bltoolkit
annotate Source/Data/Linq/Builder/SequenceConvertPath.cs @ 0:f990fcb411a9
Копия текущей версии из github
author | cin |
---|---|
date | Thu, 27 Mar 2014 21:46:09 +0400 |
parents | |
children |
rev | line source |
---|---|
0 | 1 using System; |
2 using System.Diagnostics; | |
3 using System.Linq.Expressions; | |
4 | |
5 using JetBrains.Annotations; | |
6 | |
7 namespace BLToolkit.Data.Linq.Builder | |
8 { | |
9 [DebuggerDisplay("Path = {Path}, Expr = {Expr}, Level = {Level}")] | |
10 public class SequenceConvertPath | |
11 { | |
12 [NotNull] public Expression Path; | |
13 [NotNull] public Expression Expr; | |
14 public int Level; | |
15 } | |
16 } |