common builder interface makes sense probably for future.

This commit is contained in:
David Lebée
2018-03-14 19:36:26 -05:00
parent 9ab186b811
commit 7b93b03050
5 changed files with 18 additions and 4 deletions
@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PoweredSoft.DynamicLinq
{
public interface IQueryBuilder
{
IQueryable Query { get; }
IQueryable Build();
}
}