日期:2014-05-20 浏览次数:20998 次
public IQueryable<V_Store> GetV_StoreWhere(Expression<Func<V_Store, bool>> Predicate)
{
DBEntities db = new DBEntities();
var vdb = db.V_Store.Where(Predicate.Compile());
return vdb.AsQueryable();
}