Example #1
0
        public static IEnumerable <view_AllOrdersPay> list_收付待付(this Pinhua2Context context, string customerId)
        {
            var l = from m in context.list_收付待付()
                    where m.往来号 == customerId
                    select m;

            return(l);
        }