Kasper B. Graversen
Kasper B. Graversen
### Bug Description When inserting a row using raw sql **Exception Message:** ```csharp System.Data.SqlClient.SqlException : There are fewer columns in the INSERT statement than values specified in the VALUES clause....
bitten by this twice !
2 main problems - The "what to do when absent matching" is hard-coded in the base class - the matching is not reifyable, and hence given a set of matchers,...
https://twitter.com/brianwisti wrote YOU ARE IN A LEGACY CODEBASE > RUN TESTS > YOU HAVE NO TESTS > > READ SPEC > YOU HAVE NO SPEC > > WRITE FIX >...
(_"Understanding Computers: Today & Tomorrow"_, 2009 Update By Deborah Morle) > An extremely important characteristic of the control structures just discussed is that each permits only one entry point into...
//// right hand side clear ``` Tag[] parsedTags = tagsArgument.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries).Select(y => new Tag(y.Trim())).ToArray(); ``` vs ``` var parsedTags = tagsArgument.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries).Select(y => new...
``` C# xxxx xxxxx ( xxx xxxxxx, xxxxxx xxxxxx, xxxxxx xxxxxxxx xxxx xxxxxxx, xx xxxxxxx) { } ``` vs ``` C# xxxx xxxxx (xxx xxxxxx, xxxxxx xxxxxx, xxxxxx xxxxxxxx xxxx...
# Fighting code formatting erosion *Commit hooks - unit test style test - IDE style plugin - reformatting commits //// Reformatting makes "blaming" more difficult, since possibly several commits in...
**Environment:** - Version: 5.6.3 - Branch: - [ ] vs2019 - [ ] vs2017 - [ ] vs2015 - Installation/Running method: - [ ] Visual Studio Extension - [ ]...