Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix compilation error in the LINQ test tool with VS 2008. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3c3a197fadecf920371e18fac625307c |
User & Date: | mistachkin 2014-12-05 23:08:43.470 |
Context
2014-12-08
| ||
22:25 | Modify the test suite to support testing with shared-cache enabled. check-in: 9c7aa64aed user: mistachkin tags: trunk | |
2014-12-05
| ||
23:08 | Fix compilation error in the LINQ test tool with VS 2008. check-in: 3c3a197fad user: mistachkin tags: trunk | |
22:09 | Modify GetSchemaTable method to avoid setting SchemaTableColumn.IsKey column to true when more than one table is referenced. Fix for [47c6fa04d3]. check-in: 1e8465a822 user: mistachkin tags: trunk | |
Changes
Changes to testlinq/Program.cs.
︙ | ︙ | |||
438 439 440 441 442 443 444 | { Orders newOrders = new Orders(); newOrders.ShipAddress = String.Format( "Test Order Ship Address, Index #{0}", index); | | | 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 | { Orders newOrders = new Orders(); newOrders.ShipAddress = String.Format( "Test Order Ship Address, Index #{0}", index); db.AddObject("Orders", newOrders); try { db.SaveChanges(); counts[0]++; // StoreGeneratedPattern="Identity" |
︙ | ︙ |