common builder interface makes sense probably for future.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user