Aspectacular
Aspectacular copied to clipboard
LINQ-Friendly AOP framework for wrapping aspects around DAL/Biz logic.
Github doesn't support spaces in URLs in markdown, so the links at the bottom of https://github.com/vgribok/Aspectacular/wiki appear broken.  I tried cloning the wiki and fixing this myself but Github...
QueryModifiers class, along with Single() and Count() AOP methods, modify the query, but it's not reflected in SQL-producing aspect.
From: http://social.msdn.microsoft.com/Forums/en-US/aaf5e9c9-a222-414a-baed-5c0adcc329e2/accessing-query-execution-plan-results-programmatically SqlConnectionStringBuilder connString = new SqlConnectionStringBuilder(); connString.ApplicationName = "TryIt"; connString.DataSource = @"(local)"; connString.IntegratedSecurity = true; connString.InitialCatalog = "tempdb"; using (SqlConnection conn = new SqlConnection(connString.ToString())) { conn.Open(); SqlCommand showplan_on_cmd =...
TimerAspect would be a general-purpose stock aspect measuring time spent by the method while it was executed, and framework's overhead. Details: - Time needs to be captured at all 7...