Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Make the storage schema (SSDL) files more consistent with their provider names. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | tkt-8d928c3e88 |
Files: | files | file ages | folders |
SHA1: |
b59de72204e40d25a222f63608f25853 |
User & Date: | mistachkin 2015-01-09 04:11:23.882 |
Context
2015-01-12
| ||
23:44 | Do not wrap formatted DateTime values in single quotes when they are numeric. check-in: fc9e94c67d user: mistachkin tags: tkt-8d928c3e88 | |
2015-01-09
| ||
04:11 | Make the storage schema (SSDL) files more consistent with their provider names. check-in: b59de72204 user: mistachkin tags: tkt-8d928c3e88 | |
04:10 | Add comments. check-in: 2d0a56c918 user: mistachkin tags: tkt-8d928c3e88 | |
Changes
Changes to System.Data.SQLite.Linq/Resources/SQLiteProviderServices.StoreSchemaDefinition.EF6.ssdl.
︙ | ︙ | |||
273 274 275 276 277 278 279 | <AssociationSet Name="STableConstraints" Association="Self.TableTableConstraint" > <End Role="Parent" EntitySet="STables"/> <End Role="Constraint" EntitySet="SConstraints"/> </AssociationSet> <AssociationSet Name="SConstraintConstraintColumns" Association="Self.ConstraintConstraintColumn" > <End Role="ConstraintColumn" EntitySet="SConstraintColumns"/> <End Role="Constraint" EntitySet="SConstraints"/> | | | 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | <AssociationSet Name="STableConstraints" Association="Self.TableTableConstraint" > <End Role="Parent" EntitySet="STables"/> <End Role="Constraint" EntitySet="SConstraints"/> </AssociationSet> <AssociationSet Name="SConstraintConstraintColumns" Association="Self.ConstraintConstraintColumn" > <End Role="ConstraintColumn" EntitySet="SConstraintColumns"/> <End Role="Constraint" EntitySet="SConstraints"/> </AssociationSet> <AssociationSet Name="SConstraintForeignKeys" Association="Self.ConstraintForeignKey" > <End Role="ForeignKey" EntitySet="SForeignKeys"/> <End Role="Constraint" EntitySet="SForeignKeyConstraints"/> </AssociationSet> <AssociationSet Name="SFromForeignKeyColumns" Association="Self.FromForeignKeyColumn" > <End Role="ForeignKey" EntitySet="SForeignKeys"/> <End Role="Column" EntitySet="STableColumns"/> |
︙ | ︙ | |||
475 476 477 478 479 480 481 | <EntityType Name="CheckConstraint"> <Key> <PropertyRef Name="Id" /> </Key> <Property Name="Id" Nullable="false" Type="nvarchar" /> <Property Name="Expression" Nullable="true" Type="nvarchar" /> </EntityType> | | | 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 | <EntityType Name="CheckConstraint"> <Key> <PropertyRef Name="Id" /> </Key> <Property Name="Id" Nullable="false" Type="nvarchar" /> <Property Name="Expression" Nullable="true" Type="nvarchar" /> </EntityType> <EntityType Name="ConstraintColumn"> <Key> <PropertyRef Name="ConstraintId" /> <PropertyRef Name="ColumnId" /> </Key> <Property Name="ConstraintId" Nullable="false" Type="nvarchar" /> <Property Name="ColumnId" Nullable="false" Type="nvarchar" /> |
︙ | ︙ |
Changes to System.Data.SQLite.Linq/Resources/SQLiteProviderServices.StoreSchemaDefinition.Linq.ssdl.
1 | <?xml version="1.0" encoding="utf-8"?> | | | 1 2 3 4 5 6 7 8 9 | <?xml version="1.0" encoding="utf-8"?> <Schema Namespace="EFSQLite" Provider="System.Data.SQLite.Linq" ProviderManifestToken="ISO8601" Alias="Self" xmlns="http://schemas.microsoft.com/ado/2006/04/edm/ssdl"> <EntityContainer Name="Schema"> <EntitySet Name="STables" EntityType="Self.Table"> <DefiningQuery> SELECT '[' || TABLE_NAME || ']' COLLATE NOCASE [Id] , TABLE_CATALOG [CatalogName] , TABLE_SCHEMA [SchemaName] |
︙ | ︙ | |||
273 274 275 276 277 278 279 | <AssociationSet Name="STableConstraints" Association="Self.TableTableConstraint" > <End Role="Parent" EntitySet="STables"/> <End Role="Constraint" EntitySet="SConstraints"/> </AssociationSet> <AssociationSet Name="SConstraintConstraintColumns" Association="Self.ConstraintConstraintColumn" > <End Role="ConstraintColumn" EntitySet="SConstraintColumns"/> <End Role="Constraint" EntitySet="SConstraints"/> | | | 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 | <AssociationSet Name="STableConstraints" Association="Self.TableTableConstraint" > <End Role="Parent" EntitySet="STables"/> <End Role="Constraint" EntitySet="SConstraints"/> </AssociationSet> <AssociationSet Name="SConstraintConstraintColumns" Association="Self.ConstraintConstraintColumn" > <End Role="ConstraintColumn" EntitySet="SConstraintColumns"/> <End Role="Constraint" EntitySet="SConstraints"/> </AssociationSet> <AssociationSet Name="SConstraintForeignKeys" Association="Self.ConstraintForeignKey" > <End Role="ForeignKey" EntitySet="SForeignKeys"/> <End Role="Constraint" EntitySet="SForeignKeyConstraints"/> </AssociationSet> <AssociationSet Name="SFromForeignKeyColumns" Association="Self.FromForeignKeyColumn" > <End Role="ForeignKey" EntitySet="SForeignKeys"/> <End Role="Column" EntitySet="STableColumns"/> |
︙ | ︙ | |||
475 476 477 478 479 480 481 | <EntityType Name="CheckConstraint"> <Key> <PropertyRef Name="Id" /> </Key> <Property Name="Id" Nullable="false" Type="nvarchar" /> <Property Name="Expression" Nullable="true" Type="nvarchar" /> </EntityType> | | | 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 | <EntityType Name="CheckConstraint"> <Key> <PropertyRef Name="Id" /> </Key> <Property Name="Id" Nullable="false" Type="nvarchar" /> <Property Name="Expression" Nullable="true" Type="nvarchar" /> </EntityType> <EntityType Name="ConstraintColumn"> <Key> <PropertyRef Name="ConstraintId" /> <PropertyRef Name="ColumnId" /> </Key> <Property Name="ConstraintId" Nullable="false" Type="nvarchar" /> <Property Name="ColumnId" Nullable="false" Type="nvarchar" /> |
︙ | ︙ |