摘要:
Changing the Framework version requires a restart of the W3SVC service. 分类: Asp.Net 2010-11-15 11:31 521人阅读 评论(0) 收藏 举报Changing the Framework version requires a restart of the W3SVC service. Alternatively, you can change the Framework version without restarting the W3SVC... 阅读全文
摘要:
declare @page int --第几页declare @rownum int --记录数set @page=3set @rownum=15set rowcount @rownumSELECT * FROM ( SELECT ROW_NUMBER() OVER (ORDER BY id) AS RowNum,* FROM t_department ) A WHERE A.RowNum > @rownum*(@page-1)----------------返回该表有几页declare @rownum int --@rownum 记录行set @rownum=30select ( (c 阅读全文
摘要:
//SCHGNContextRepository.csusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.Entity;using System.Linq.Expressions;using System.Data.SqlClient;namespace SCHGN.DAL{ public class SCHGNContextRepository<T>:IRepository<T> where T :class { prot 阅读全文