Aspectacular icon indicating copy to clipboard operation
Aspectacular copied to clipboard

LINQ-Friendly AOP framework for wrapping aspects around DAL/Biz logic.

Results 6 Aspectacular issues
Sort by recently updated
recently updated
newest added

Github doesn't support spaces in URLs in markdown, so the links at the bottom of https://github.com/vgribok/Aspectacular/wiki appear broken. ![image](https://user-images.githubusercontent.com/4255323/47604032-ac84fb80-d9e3-11e8-9690-fbfa9108b2ad.png) 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.

enhancement

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 =...

enhancement

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...

enhancement