LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : using System.Collections.Generic; 2 : using System.Collections.ObjectModel; 3 : using System.Linq.Expressions; 4 : using System.Reflection; 5 : 6 : namespace Cqrs.Sql.DataStores 7 : { 8 : public interface IExpressionTreeConverter 9 : { 10 0 : Dictionary<MemberInfo, LambdaExpression> GetMappings(); 11 : 12 0 : Expression Visit(Expression node); 13 : 14 0 : ReadOnlyCollection<Expression> Visit(ReadOnlyCollection<Expression> nodes); 15 : } 16 : } |
Generated by: LCOV version 1.10 |