摘要:
public class Person { public string 姓名{get;set;} } public class Profile:Person { public string 档案号{get;set;} } var pros = valueItem.GetType().GetPrope 阅读全文
摘要:
with #pager as (select * ,ROW_NUMBER() OVER(Order By ID) as rowid from table)select * from #pager where rowid between (130 * (50-1)+1) and 130 * 50 -- 阅读全文