Directory SubSonic.Tests/Query2/

Directory Created:
2008-01-10 23:07
Directory Deleted:
2009-07-01 23:17
Total Files:
0
Deleted Files:
9
Lines of Code:
0

[root]/SubSonic.Tests/Query2

Lines of Code

SubSonic.Tests/Query2/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 41 (100.0%) 592 (100.0%) 14.4
robconery 19 (46.3%) 251 (42.4%) 13.2
canofunk 7 (17.1%) 185 (31.3%) 26.4
shawn.oster 6 (14.6%) 156 (26.4%) 26.0
robconery@gmail.com 9 (22.0%) 0 (0.0%) 0.0

Most Recent Commits

robconery@gmail.com 2009-07-01 23:17 Rev.: 525

moving 2.x source to 2.0 folder

0 lines of code changed in 9 files:

  • SubSonic.Tests/Query2: AggregateTests.cs (del), DeleteTests.cs (del), InlineQueryTests.cs (del), InsertTests.cs (del), ParserTestUtility.cs (del), SelectTests.cs (del), SqlServerParserTests.cs (del), TransactionTests.cs (del), UpdateTests.cs (del)
shawn.oster 2008-03-03 02:25 Rev.: 347

FIXED: Multiple INs in a SqlQuery caused the first set of IN parameters to be used for the any subsequent INs. See: http://forums.subsonicproject.com/forums/t/2795.aspx

12 lines of code changed in 1 file:

  • SubSonic.Tests/Query2: SelectTests.cs (+12)
shawn.oster 2008-02-27 19:38 Rev.: 340

ADDED: Tests to support SqlQuery.LeftOuterJoin().

31 lines of code changed in 1 file:

  • SubSonic.Tests/Query2: SelectTests.cs (+31)
shawn.oster 2008-02-27 15:05 Rev.: 337

FIXED: SqlQuery.And() and Or() were also affected by aggregate naming issue. See: http://www.codeplex.com/subsonic/WorkItem/View.aspx?WorkItemId=15354
ADDED: Tests to validate that passing a single aggregate to SqlQuery methods works.

96 lines of code changed in 1 file:

  • SubSonic.Tests/Query2: SelectTests.cs (+96 -2)
shawn.oster 2008-02-26 21:18 Rev.: 333

ADDED: Test to support Where() with single Aggregate producing bad SQL. See: http://www.codeplex.com/subsonic/WorkItem/View.aspx?WorkItemId=15354

13 lines of code changed in 1 file:

  • SubSonic.Tests/Query2: AggregateTests.cs (+13)
shawn.oster 2008-02-25 23:53 Rev.: 330

FIXED: Added Rollback attribute to tests that perform database changes

4 lines of code changed in 2 files:

  • SubSonic.Tests/Query2: InsertTests.cs (+3), TransactionTests.cs (+1)
canofunk 2008-02-25 19:03 Rev.: 327

CHANGED: SubSonic.Tests - Adjusted tests to align with current code and values from the default Northwind database (Thanks Shawn!)
CHANGED: SubSonic.Tests - Changed GeneratedCode folder structure and regenerated all classes
CHANGED: SubSonic - Refactored the way that QualifiedName properties are created to provide more consistent, fully qualified SQL generation

160 lines of code changed in 5 files:

  • SubSonic.Tests/Query2: AggregateTests.cs (+3 -3), DeleteTests.cs (+1 -1), SelectTests.cs (+112 -81), SqlServerParserTests.cs (+43 -27), UpdateTests.cs (+1 -1)
robconery 2008-02-01 16:52 Rev.: 305

Disabled Migrations for beta
Added Shawn Oster's Aggregate tests
Fixed Stdev issue
Set LoadDropDown to take ListControl instead of DropDownList

3 lines of code changed in 1 file:

  • SubSonic.Tests/Query2: AggregateTests.cs (new 3)
robconery 2008-02-01 16:18 Rev.: 303

Added IEquatable to RepositoryRecord and ReadOnlyRecord
Updated SelectTests to include Shawn Oster's SQL NOT IN tests

33 lines of code changed in 1 file:

  • SubSonic.Tests/Query2: SelectTests.cs (+33)
robconery 2008-01-18 22:01 Rev.: 279

Added contributions for tests

60 lines of code changed in 3 files:

  • SubSonic.Tests/Query2: InsertTests.cs (+2 -2), SelectTests.cs (+56 -5), SqlServerParserTests.cs (+2 -1)
canofunk 2008-01-18 09:31 Rev.: 276

CHANGED: SubStage - Refactored tree navigation code.
CHANGED: Multiple - Added comment stubs and headers to several new class files.
ADDED: SubStage - Connection string testing.
ADDED: SubSonicCentral - Base class configuration parameters to ConfigBuilder.

25 lines of code changed in 2 files:

  • SubSonic.Tests/Query2: DeleteTests.cs (+17 -16), TransactionTests.cs (+8 -8)
robconery 2008-01-16 17:39 Rev.: 273

Fixed Interface warnings and regenerated Test Bits

30 lines of code changed in 1 file:

  • SubSonic.Tests/Query2: SelectTests.cs (+30 -5)
robconery 2008-01-16 17:19 Rev.: 272

Restructured ActiveRecord Core to allow for Repository Pattern
Depricated AbstractRecord
Moved ActiveRecord to inherit from ReadOnlyRecord (with only change being the ability to Persist)
Added RepositoryRecord class
Added Repository functionality to Struct template (C# and VB)
Created initial CRUD test set for Repository
Added method to Utility to determine if a type is a SubSonicType (IsSubSonicType())
Fixed Shawn Oster's Neep bug :p
Added NorthwindRepos provider to test SetConfig
Fixed bug where ExecuteReader was firing twice
Added IRecordBase and IRepositoryRecord interfaces

24 lines of code changed in 1 file:

  • SubSonic.Tests/Query2: SelectTests.cs (+24 -7)
robconery 2008-01-14 17:59 Rev.: 266

Updated VB Structs template to have Query factory
Tweaked Query factory bits in structs to use generics and enforce better coding (no strings)
Added generics to all Query bits. You can use this: Select.AllColumnsFrom<Northwind.Product>() and Insert().Into<Northwind.Product>(...) for type safety.
Updated Tests
Fixed MySQLInnoDB boolean set issue

51 lines of code changed in 5 files:

  • SubSonic.Tests/Query2: InsertTests.cs (+1 -1), SelectTests.cs (+19 -6), SqlServerParserTests.cs (+7 -7), TransactionTests.cs (new 8), UpdateTests.cs (+16)
robconery 2008-01-10 23:07 Rev.: 253

Added Select() for In and NotIn
Segregated tests for clarity
Added From<> for typed expressions
Added Query factory methods to CS_Structs Template (need to update VB as well)
Fixed SP templates (VB and C#) to include schema names

50 lines of code changed in 7 files:

  • SubSonic.Tests/Query2: DeleteTests.cs (new 16), InlineQueryTests.cs (new), InsertTests.cs (new 2), ParserTestUtility.cs (new), SelectTests.cs (new 6), SqlServerParserTests.cs (new 26), UpdateTests.cs (new)
Generated by StatSVN 0.4.1