Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | For the System.Data.SQLite.EF6 assembly, rename the IsStoreGenerated metadata column in the SSDL to IsServerGenerated. Pursuant to [3c00ec5b52]. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | mistake |
Files: | files | file ages | folders |
SHA1: |
7a7ec7f34139c4cf76143fe9e1c50de0 |
User & Date: | mistachkin 2014-05-17 01:33:52.902 |
Context
2014-05-17
| ||
17:02 | More column name adjustments in metadata to support using the Entity Framework 6 design-time support. Pursuant to [3c00ec5b52]. Closed-Leaf check-in: b962d2a162 user: mistachkin tags: mistake | |
01:33 | For the System.Data.SQLite.EF6 assembly, rename the IsStoreGenerated metadata column in the SSDL to IsServerGenerated. Pursuant to [3c00ec5b52]. check-in: 7a7ec7f341 user: mistachkin tags: mistake | |
2014-05-15
| ||
23:44 | Fix a FormatException in the SQLiteConnection.Schema_Indexes method when the default type has been changed to String. Pursuant to [3c00ec5b52]. check-in: 5b282efc5f user: mistachkin tags: trunk | |
Changes
Changes to System.Data.SQLite.Linq/Resources/SQLiteProviderServices.StoreSchemaDefinition.EF6.ssdl.
︙ | ︙ | |||
32 33 34 35 36 37 38 | , c.COLLATION_SCHEMA [CollationSchema] , c.COLLATION_NAME [CollationName] , c.CHARACTER_SET_CATALOG [CharacterSetCatalog] , c.CHARACTER_SET_SCHEMA [CharacterSetSchema] , c.CHARACTER_SET_NAME [CharacterSetName] , 0 as [IsMultiSet] , c.[AUTOINCREMENT] as [IsIdentity] | | | 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | , c.COLLATION_SCHEMA [CollationSchema] , c.COLLATION_NAME [CollationName] , c.CHARACTER_SET_CATALOG [CharacterSetCatalog] , c.CHARACTER_SET_SCHEMA [CharacterSetSchema] , c.CHARACTER_SET_NAME [CharacterSetName] , 0 as [IsMultiSet] , c.[AUTOINCREMENT] as [IsIdentity] , 0 as [IsServerGenerated] , c.COLUMN_DEFAULT as [Default] FROM TEMP.SCHEMACOLUMNS c </DefiningQuery> </EntitySet> <EntitySet Name="SViews" EntityType="Self.View"> |
︙ | ︙ | |||
74 75 76 77 78 79 80 | , c.COLLATION_SCHEMA [CollationSchema] , c.COLLATION_NAME [CollationName] , c.CHARACTER_SET_CATALOG [CharacterSetCatalog] , c.CHARACTER_SET_SCHEMA [CharacterSetSchema] , c.CHARACTER_SET_NAME [CharacterSetName] , 0 as [IsMultiSet] , c.[AUTOINCREMENT] as [IsIdentity] | | | 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | , c.COLLATION_SCHEMA [CollationSchema] , c.COLLATION_NAME [CollationName] , c.CHARACTER_SET_CATALOG [CharacterSetCatalog] , c.CHARACTER_SET_SCHEMA [CharacterSetSchema] , c.CHARACTER_SET_NAME [CharacterSetName] , 0 as [IsMultiSet] , c.[AUTOINCREMENT] as [IsIdentity] , 0 as [IsServerGenerated] , c.COLUMN_DEFAULT [Default] FROM TEMP.SCHEMAVIEWCOLUMNS c </DefiningQuery> </EntitySet> <EntitySet Name="SFunctions" EntityType="Self.Function"> |
︙ | ︙ | |||
355 356 357 358 359 360 361 | <Property Name="CollationSchema" Type="nvarchar" /> <Property Name="CollationName" Type="nvarchar" /> <Property Name="CharacterSetCatalog" Type="nvarchar" /> <Property Name="CharacterSetSchema" Type="nvarchar" /> <Property Name="CharacterSetName" Type="nvarchar" /> <Property Name="IsMultiSet" Nullable="false" Type="bit" /> <Property Name="IsIdentity" Nullable="false" Type="bit" /> | | | 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 | <Property Name="CollationSchema" Type="nvarchar" /> <Property Name="CollationName" Type="nvarchar" /> <Property Name="CharacterSetCatalog" Type="nvarchar" /> <Property Name="CharacterSetSchema" Type="nvarchar" /> <Property Name="CharacterSetName" Type="nvarchar" /> <Property Name="IsMultiSet" Nullable="false" Type="bit" /> <Property Name="IsIdentity" Nullable="false" Type="bit" /> <Property Name="IsServerGenerated" Nullable="false" Type="bit" /> <Property Name="Default" Nullable="true" Type="nvarchar"/> </EntityType> <EntityType Name="View"> <Key> <PropertyRef Name="Id" /> </Key> |
︙ | ︙ | |||
393 394 395 396 397 398 399 | <Property Name="CollationSchema" Type="nvarchar" /> <Property Name="CollationName" Type="nvarchar" /> <Property Name="CharacterSetCatalog" Type="nvarchar" /> <Property Name="CharacterSetSchema" Type="nvarchar" /> <Property Name="CharacterSetName" Type="nvarchar" /> <Property Name="IsMultiSet" Nullable="false" Type="bit" /> <Property Name="IsIdentity" Nullable="false" Type="bit" /> | | | 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 | <Property Name="CollationSchema" Type="nvarchar" /> <Property Name="CollationName" Type="nvarchar" /> <Property Name="CharacterSetCatalog" Type="nvarchar" /> <Property Name="CharacterSetSchema" Type="nvarchar" /> <Property Name="CharacterSetName" Type="nvarchar" /> <Property Name="IsMultiSet" Nullable="false" Type="bit" /> <Property Name="IsIdentity" Nullable="false" Type="bit" /> <Property Name="IsServerGenerated" Nullable="false" Type="bit" /> <Property Name="Default" Nullable="true" Type="nvarchar"/> </EntityType> <EntityType Name="Function"> <Key> <PropertyRef Name="Id" /> </Key> |
︙ | ︙ |