info为一表名 
  原先是这样的 
testDataContext   DB   =   new   testDataContext(); 
                var   query   =   from   p   in   DB.info 
                                        where   ..... 
                                        select   .... 
重建以后需要 
testDataContext   DB   =   new   testDataContext(); 
                var   query   =   from   p   in   DB.infos 
                                        where   ..... 
                                        select   .... 这是为什么啊???能不能不让它多个S呢???不然得修改不少地方呢.....