System.Data.SQLite

Check-in [27511f2109]
Login

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: 27511f21090702361d569a3a329b503f70d1d500
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
Unified Diff Ignore Whitespace Patch
Changes to testlinq/Program.cs.
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
                  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();

              DateTime dateTime = new DateTime(
                  1997, 1, 1, 0, 0, 0, DateTimeKind.Local);

              db.Orders.Where(i => i.OrderDate < dateTime).Count();
          }

          if (dateTimeFormat != null)
          {
              Environment.SetEnvironmentVariable(
                  "AppendManifestToken_SQLiteProviderManifest",
                  null);







<
<
<
<
<







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);