摘要:
IIS 所收到的对某 Microsoft ASP.NET 页面的每个请求都被移交给 ASP.NET HTTP 管线。HTTP 管线由一系列托管对象组成,这些对象按顺序处理该请求,并完成从 URL 到普通 HTML 文本的转换。HTTP 管线的入口点是 HttpRuntime 类。要激活 HTTP 管 阅读全文
摘要:
ALTER PROCEDURE [dbo].[userinfor2] @id int, @UserID int outputASBEGIN SET NOCOUNT ON; declare @name varchar(500) begin try BEGIN TRAN declare youbiao 阅读全文
摘要:
IQueryable 和IEnumerable总结 1,IEnumerable<T> result = (from t in context.Table order by t.Id select c).AsEnumerable().Take(3) 如果返回的是IEnumerable<T>类型的是预先 阅读全文