时时商务社区

标题: Linq查询 [打印本页]

作者: wx_pylelnL4    时间: 2018-2-18 04:48

                   public List GetList(string name, string product)
        {
                     var table = from c in _db.BBCustomer
                        where (!string.IsNullOrEmpty(name) ? c.Name.Contains(name) : true) &&
                            (!string.IsNullOrEmpty(product) ? c.ProductName.Contains(product) : true)
                        orderby c.CID descending
                        select c;
            return table.ToList();
        }





欢迎光临 时时商务社区 (http://bbs.4435.cn/) Powered by Discuz! X3.2