コード例 #1
0
ファイル: list.cs プロジェクト: zhangkaiyi/PinhuaMaster2
        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);
        }