Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Simplify the new DateTime test in the testlinq program. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | tkt-8d928c3e88 |
Files: | files | file ages | folders |
SHA1: |
27511f21090702361d569a3a329b503f |
User & Date: | mistachkin 2015-01-13 03:18:39.353 |
Context
2015-01-13
| ||
03:34 | Merge updates from trunk. check-in: a15efc1fd5 user: mistachkin tags: tkt-8d928c3e88 | |
03:18 | Simplify the new DateTime test in the testlinq program. check-in: 27511f2109 user: mistachkin tags: tkt-8d928c3e88 | |
02:28 | Enhance the self-cleanup for the new tests in the testlinq program. check-in: 6f6b1fe9d4 user: mistachkin tags: tkt-8d928c3e88 | |
Changes
Changes to testlinq/Program.cs.
︙ | ︙ | |||
610 611 612 613 614 615 616 | String.Format(";DateTimeFormat={0};", dateTimeFormat)); } using (northwindEFEntities db = new northwindEFEntities()) { db.Orders.Where(i => i.OrderDate < new DateTime(1997, 1, 1, 0, 0, 0, DateTimeKind.Local)).Count(); | < < < < < | 610 611 612 613 614 615 616 617 618 619 620 621 622 623 | String.Format(";DateTimeFormat={0};", dateTimeFormat)); } using (northwindEFEntities db = new northwindEFEntities()) { db.Orders.Where(i => i.OrderDate < new DateTime(1997, 1, 1, 0, 0, 0, DateTimeKind.Local)).Count(); } if (dateTimeFormat != null) { Environment.SetEnvironmentVariable( "AppendManifestToken_SQLiteProviderManifest", null); |
︙ | ︙ |