System.Data.SQLite

Check-in [9a71005d4e]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fix compilation issue with EF6.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | preRelease
Files: files | file ages | folders
SHA1: 9a71005d4ef52ae56851435e6c5247c2fc93f5b5
User & Date: mistachkin 2015-08-19 14:32:41.427
Context
2015-08-19
14:46
Update the release date again. check-in: b444118e9f user: mistachkin tags: preRelease
14:32
Fix compilation issue with EF6. check-in: 9a71005d4e user: mistachkin tags: preRelease
04:52
Fix the exclusion file syntax for use by the command line 'zip' tool. check-in: 259a546366 user: mistachkin tags: preRelease
Changes
Unified Diff Ignore Whitespace Patch
Changes to testlinq/Program.cs.
8
9
10
11
12
13
14
15
16
17
18

19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Diagnostics;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Transactions;

#if USE_ENTITY_FRAMEWORK_6

using System.Data.Entity.Core.EntityClient;
using System.Data.Entity.Core.Objects;
#else
using System.Data.EntityClient;
using System.Data.Objects;
#endif








<



>







8
9
10
11
12
13
14

15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Common;
using System.Diagnostics;
using System.Linq;
using System.Reflection;

using System.Transactions;

#if USE_ENTITY_FRAMEWORK_6
using System.Data.Entity.Core;
using System.Data.Entity.Core.EntityClient;
using System.Data.Entity.Core.Objects;
#else
using System.Data.EntityClient;
using System.Data.Objects;
#endif