Пример #1
0
        /**************************************************************************************************************/

        /// <summary>
        /// 请参阅: <see langword=".Where() &amp; .And() &amp; .Or() 使用 https://www.cnblogs.com/Meng-NET/"/>
        /// </summary>
        public static WhereD <M> Where <M>(this Deleter <M> deleter, Expression <Func <M, bool> > compareFunc)
            where M : class
        {
            deleter.DC.Action = ActionEnum.Where;
            deleter.ST_WhereAndOr(compareFunc);
            return(new WhereD <M>(deleter.DC));
        }