diff --git a/src/EntityFramework/Core/Metadata/Edm/MetadataWorkspace.cs b/src/EntityFramework/Core/Metadata/Edm/MetadataWorkspace.cs index 1cad5d607e..f4b5ea5b5b 100644 --- a/src/EntityFramework/Core/Metadata/Edm/MetadataWorkspace.cs +++ b/src/EntityFramework/Core/Metadata/Edm/MetadataWorkspace.cs @@ -548,7 +548,7 @@ public virtual T GetItem(string identity, DataSpace dataSpace) where T : Glob /// The conceptual model on which the item is searched. /// The conceptual model on which the item is searched. /// - /// When this method returns, contains a object. This parameter is passed uninitialized. + /// When this method returns, contains a object. This parameter is passed uninitialized. /// /// The type returned by the method. public virtual bool TryGetItem(string identity, DataSpace space, out T item) where T : GlobalItem @@ -577,7 +577,7 @@ public virtual T GetItem(string identity, bool ignoreCase, DataSpace dataSpac /// true to perform the case-insensitive search; otherwise, false. /// The conceptual model on which the item is searched. /// - /// When this method returns, contains a object. This parameter is passed uninitialized. + /// When this method returns, contains a object. This parameter is passed uninitialized. /// /// The type returned by the method. public virtual bool TryGetItem(string identity, bool ignoreCase, DataSpace dataSpace, out T item) where T : GlobalItem diff --git a/src/EntityFramework/Core/Metadata/Edm/TypeUsage.cs b/src/EntityFramework/Core/Metadata/Edm/TypeUsage.cs index 6795ff6991..ea487caf65 100644 --- a/src/EntityFramework/Core/Metadata/Edm/TypeUsage.cs +++ b/src/EntityFramework/Core/Metadata/Edm/TypeUsage.cs @@ -281,10 +281,10 @@ public static TypeUsage CreateBinaryTypeUsage(PrimitiveType primitiveType, bool /// A object. /// /// - /// The simple type that defines the units of measurement of the DateTime object. + /// The simple type that defines the units of measurement of the object. /// /// - /// The degree of granularity of the DateTimeOffset in fractions of a second, based on the number of decimal places supported. For example a precision of 3 means the granularity supported is milliseconds. + /// The degree of granularity of the in fractions of a second, based on the number of decimal places supported. For example a precision of 3 means the granularity supported is milliseconds. /// public static TypeUsage CreateDateTimeTypeUsage( PrimitiveType primitiveType, @@ -314,7 +314,7 @@ public static TypeUsage CreateDateTimeTypeUsage( /// /// The simple type that defines the units of measurement of the offset. /// - /// The degree of granularity of the DateTimeOffset in fractions of a second, based on the number of decimal places supported. For example a precision of 3 means the granularity supported is milliseconds. + /// The degree of granularity of the in fractions of a second, based on the number of decimal places supported. For example a precision of 3 means the granularity supported is milliseconds. /// public static TypeUsage CreateDateTimeOffsetTypeUsage( PrimitiveType primitiveType, @@ -344,10 +344,10 @@ public static TypeUsage CreateDateTimeOffsetTypeUsage( /// A object. /// /// - /// The simple type that defines the units of measurement of the DateTime object. + /// The simple type that defines the units of measurement of the object. /// /// - /// The degree of granularity of the DateTimeOffset in fractions of a second, based on the number of decimal places supported. For example a precision of 3 means the granularity supported is milliseconds. + /// The degree of granularity of the in fractions of a second, based on the number of decimal places supported. For example a precision of 3 means the granularity supported is milliseconds. /// public static TypeUsage CreateTimeTypeUsage( PrimitiveType primitiveType, diff --git a/src/EntityFramework/Core/Objects/DbUpdatableDataRecord.cs b/src/EntityFramework/Core/Objects/DbUpdatableDataRecord.cs index b3373f271f..2ea180a3f9 100644 --- a/src/EntityFramework/Core/Objects/DbUpdatableDataRecord.cs +++ b/src/EntityFramework/Core/Objects/DbUpdatableDataRecord.cs @@ -194,7 +194,7 @@ IDataReader IDataRecord.GetData(int ordinal) } /// - /// Retrieves the field value as a + /// Retrieves the field value as a /// /// /// The field value as a . @@ -541,7 +541,7 @@ public DbDataRecord GetDataRecord(int i) } /// - /// Retrieves the field value as a . + /// Retrieves the field value as a . /// /// /// The field value as a . diff --git a/src/EntityFramework/Core/Objects/ObjectContext.cs b/src/EntityFramework/Core/Objects/ObjectContext.cs index 3f0760cf47..66b8dff85f 100644 --- a/src/EntityFramework/Core/Objects/ObjectContext.cs +++ b/src/EntityFramework/Core/Objects/ObjectContext.cs @@ -815,7 +815,7 @@ internal void AddSingleObject(EntitySet entitySet, IEntityWrapper wrappedEntity, /// /// The entity is in a , /// + /// cref="F:System.Data.Entity.EntityState.Added" /> /// or state or the entity is attached to another instance of /// @@ -836,7 +836,7 @@ public virtual void LoadProperty(object entity, string navigationProperty) /// /// The entity is in a , /// + /// cref="F:System.Data.Entity.EntityState.Added" /> /// or state or the entity is attached to another instance of /// @@ -857,7 +857,7 @@ public virtual void LoadProperty(object entity, string navigationProperty, Merge /// /// The entity is in a , /// + /// cref="F:System.Data.Entity.EntityState.Added" /> /// or state or the entity is attached to another instance of /// @@ -887,7 +887,7 @@ public virtual void LoadProperty(TEntity entity, Expression /// The entity is in a , /// + /// cref="F:System.Data.Entity.EntityState.Added" /> /// or state or the entity is attached to another instance of /// diff --git a/src/EntityFramework/Core/Objects/ObjectStateManager.cs b/src/EntityFramework/Core/Objects/ObjectStateManager.cs index a7abc45abc..01e9aaef02 100644 --- a/src/EntityFramework/Core/Objects/ObjectStateManager.cs +++ b/src/EntityFramework/Core/Objects/ObjectStateManager.cs @@ -2255,7 +2255,7 @@ private void ResetEntityKey(EntityEntry entry, EntityKey value) /// /// When the object is not detached and does not have an entry in the state manager /// or when you try to change the state to - /// from any other + /// from any other /// or when state is not a valid value. /// public virtual ObjectStateEntry ChangeObjectState(object entity, EntityState entityState) diff --git a/src/EntityFramework/Migrations/Design/CSharpMigrationCodeGenerator.cs b/src/EntityFramework/Migrations/Design/CSharpMigrationCodeGenerator.cs index 6577137365..78f40acb61 100644 --- a/src/EntityFramework/Migrations/Design/CSharpMigrationCodeGenerator.cs +++ b/src/EntityFramework/Migrations/Design/CSharpMigrationCodeGenerator.cs @@ -1178,7 +1178,7 @@ protected virtual void Generate(ColumnModel column, IndentedTextWriter writer, b } /// - /// Generates code to specify the default value for a column. + /// Generates code to specify the default value for a column. /// /// The value to be used as the default. /// Code representing the default value. diff --git a/src/EntityFramework/Migrations/Design/VisualBasicMigrationCodeGenerator.cs b/src/EntityFramework/Migrations/Design/VisualBasicMigrationCodeGenerator.cs index 9f01f2b17e..a9c85aa38e 100644 --- a/src/EntityFramework/Migrations/Design/VisualBasicMigrationCodeGenerator.cs +++ b/src/EntityFramework/Migrations/Design/VisualBasicMigrationCodeGenerator.cs @@ -1214,7 +1214,7 @@ protected virtual void Generate(ColumnModel column, IndentedTextWriter writer, b } /// - /// Generates code to specify the default value for a column. + /// Generates code to specify the default value for a column. /// /// The value to be used as the default. /// Code representing the default value. diff --git a/src/EntityFramework/ModelConfiguration/Configuration/Mapping/EntityMappingConfiguration`.cs b/src/EntityFramework/ModelConfiguration/Configuration/Mapping/EntityMappingConfiguration`.cs index 4ae30d834e..b0c674469b 100644 --- a/src/EntityFramework/ModelConfiguration/Configuration/Mapping/EntityMappingConfiguration`.cs +++ b/src/EntityFramework/ModelConfiguration/Configuration/Mapping/EntityMappingConfiguration`.cs @@ -74,7 +74,7 @@ public PropertyMappingConfiguration Property( } /// - /// Configures a property that is included in this mapping fragment. + /// Configures a property that is included in this mapping fragment. /// /// The type of the property being configured. /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty @@ -90,7 +90,7 @@ public PropertyMappingConfiguration Property( } /// - /// Configures a property that is included in this mapping fragment. + /// Configures a property that is included in this mapping fragment. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -104,7 +104,7 @@ public PropertyMappingConfiguration Property( } /// - /// Configures a property that is included in this mapping fragment. + /// Configures a property that is included in this mapping fragment. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -118,7 +118,7 @@ public PropertyMappingConfiguration Property( } /// - /// Configures a property that is included in this mapping fragment. + /// Configures a property that is included in this mapping fragment. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -131,7 +131,7 @@ public PropertyMappingConfiguration Property(Expression - /// Configures a property that is included in this mapping fragment. + /// Configures a property that is included in this mapping fragment. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -144,7 +144,7 @@ public PropertyMappingConfiguration Property(Expression - /// Configures a property that is included in this mapping fragment. + /// Configures a property that is included in this mapping fragment. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -157,7 +157,7 @@ public PropertyMappingConfiguration Property(Expression - /// Configures a property that is included in this mapping fragment. + /// Configures a property that is included in this mapping fragment. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -183,7 +183,7 @@ public PropertyMappingConfiguration Property(Expression - /// Configures a property that is included in this mapping fragment. + /// Configures a property that is included in this mapping fragment. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -210,7 +210,7 @@ public PropertyMappingConfiguration Property( } /// - /// Configures a property that is included in this mapping fragment. + /// Configures a property that is included in this mapping fragment. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -237,7 +237,7 @@ public PropertyMappingConfiguration Property(Expression - /// Configures a property that is included in this mapping fragment. + /// Configures a property that is included in this mapping fragment. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. diff --git a/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/Api/BinaryPropertyConfiguration.cs b/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/Api/BinaryPropertyConfiguration.cs index ee52672d28..c2349df0f4 100644 --- a/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/Api/BinaryPropertyConfiguration.cs +++ b/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/Api/BinaryPropertyConfiguration.cs @@ -6,7 +6,7 @@ namespace System.Data.Entity.ModelConfiguration.Configuration using System.Data.Entity.Infrastructure; /// - /// Used to configure a property of an entity type or complex type. + /// Used to configure a property of an entity type or complex type. /// This configuration functionality is available via the Code First Fluent API, see . /// public class BinaryPropertyConfiguration : LengthPropertyConfiguration @@ -53,7 +53,7 @@ internal BinaryPropertyConfiguration(Properties.Primitive.BinaryPropertyConfigur /// /// Configures the property to be variable length. - /// properties are variable length by default. + /// properties are variable length by default. /// /// The same BinaryPropertyConfiguration instance so that multiple calls can be chained. public new BinaryPropertyConfiguration IsVariableLength() @@ -66,7 +66,7 @@ internal BinaryPropertyConfiguration(Properties.Primitive.BinaryPropertyConfigur /// /// Configures the property to be optional. /// The database column used to store this property will be nullable. - /// properties are optional by default. + /// properties are optional by default. /// /// The same BinaryPropertyConfiguration instance so that multiple calls can be chained. public new BinaryPropertyConfiguration IsOptional() diff --git a/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/Api/DecimalPropertyConfiguration.cs b/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/Api/DecimalPropertyConfiguration.cs index 5e1fe9207d..c0e710a12b 100644 --- a/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/Api/DecimalPropertyConfiguration.cs +++ b/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/Api/DecimalPropertyConfiguration.cs @@ -6,7 +6,7 @@ namespace System.Data.Entity.ModelConfiguration.Configuration using System.Data.Entity.Infrastructure; /// - /// Used to configure a property of an entity type or complex type. + /// Used to configure a property of an entity type or complex type. /// This configuration functionality is available via the Code First Fluent API, see . /// public class DecimalPropertyConfiguration : PrimitivePropertyConfiguration @@ -31,7 +31,7 @@ internal DecimalPropertyConfiguration(Properties.Primitive.DecimalPropertyConfig /// /// Configures the property to be required. /// The database column used to store this property will be non-nullable. - /// properties are required by default. + /// properties are required by default. /// /// The same DecimalPropertyConfiguration instance so that multiple calls can be chained. public new DecimalPropertyConfiguration IsRequired() diff --git a/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/Api/StringPropertyConfiguration.cs b/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/Api/StringPropertyConfiguration.cs index b61b22ebb8..113a5c2eac 100644 --- a/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/Api/StringPropertyConfiguration.cs +++ b/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/Api/StringPropertyConfiguration.cs @@ -6,7 +6,7 @@ namespace System.Data.Entity.ModelConfiguration.Configuration using System.Data.Entity.Infrastructure; /// - /// Used to configure a property of an entity type or complex type. + /// Used to configure a property of an entity type or complex type. /// This configuration functionality is available via the Code First Fluent API, see . /// public class StringPropertyConfiguration : LengthPropertyConfiguration @@ -53,7 +53,7 @@ internal StringPropertyConfiguration(Properties.Primitive.StringPropertyConfigur /// /// Configures the property to be variable length. - /// properties are variable length by default. + /// properties are variable length by default. /// /// The same StringPropertyConfiguration instance so that multiple calls can be chained. public new StringPropertyConfiguration IsVariableLength() @@ -66,7 +66,7 @@ internal StringPropertyConfiguration(Properties.Primitive.StringPropertyConfigur /// /// Configures the property to be optional. /// The database column used to store this property will be nullable. - /// properties are optional by default. + /// properties are optional by default. /// /// The same StringPropertyConfiguration instance so that multiple calls can be chained. public new StringPropertyConfiguration IsOptional() diff --git a/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/BinaryPropertyConfiguration.cs b/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/BinaryPropertyConfiguration.cs index f690610597..f0f136dbb2 100644 --- a/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/BinaryPropertyConfiguration.cs +++ b/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/BinaryPropertyConfiguration.cs @@ -9,7 +9,7 @@ namespace System.Data.Entity.ModelConfiguration.Configuration.Properties.Primiti using System.Data.Entity.Utilities; // - // Used to configure a property of an entity type or + // Used to configure a property of an entity type or // complex type. // internal class BinaryPropertyConfiguration : LengthPropertyConfiguration diff --git a/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/ConventionPrimitivePropertyConfiguration.cs b/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/ConventionPrimitivePropertyConfiguration.cs index 2976bb3fb0..2122fb037b 100644 --- a/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/ConventionPrimitivePropertyConfiguration.cs +++ b/src/EntityFramework/ModelConfiguration/Configuration/Properties/Primitive/ConventionPrimitivePropertyConfiguration.cs @@ -550,7 +550,7 @@ public virtual ConventionPrimitivePropertyConfiguration HasPrecision(byte precis /// /// /// Calling this will have no effect once it has been configured. - /// This method throws if the property is not a . + /// This method throws if the property is not a . /// public virtual ConventionPrimitivePropertyConfiguration IsRowVersion() { diff --git a/src/EntityFramework/ModelConfiguration/Configuration/Types/StructuralTypeConfiguration`.cs b/src/EntityFramework/ModelConfiguration/Configuration/Types/StructuralTypeConfiguration`.cs index ce31746703..599c9314a8 100644 --- a/src/EntityFramework/ModelConfiguration/Configuration/Types/StructuralTypeConfiguration`.cs +++ b/src/EntityFramework/ModelConfiguration/Configuration/Types/StructuralTypeConfiguration`.cs @@ -32,7 +32,7 @@ public PrimitivePropertyConfiguration Property( } /// - /// Configures a property that is defined on this type. + /// Configures a property that is defined on this type. /// /// The type of the property being configured. /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty @@ -62,7 +62,7 @@ public PrimitivePropertyConfiguration Property( } /// - /// Configures a property that is defined on this type. + /// Configures a property that is defined on this type. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -76,7 +76,7 @@ public PrimitivePropertyConfiguration Property( } /// - /// Configures a property that is defined on this type. + /// Configures a property that is defined on this type. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -90,7 +90,7 @@ public PrimitivePropertyConfiguration Property( } /// - /// Configures a property that is defined on this type. + /// Configures a property that is defined on this type. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -103,7 +103,7 @@ public StringPropertyConfiguration Property(Expression - /// Configures a property that is defined on this type. + /// Configures a property that is defined on this type. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -116,7 +116,7 @@ public BinaryPropertyConfiguration Property(Expression - /// Configures a property that is defined on this type. + /// Configures a property that is defined on this type. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -129,7 +129,7 @@ public DecimalPropertyConfiguration Property(Expression - /// Configures a property that is defined on this type. + /// Configures a property that is defined on this type. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -155,7 +155,7 @@ public DateTimePropertyConfiguration Property(Expression - /// Configures a property that is defined on this type. + /// Configures a property that is defined on this type. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -182,7 +182,7 @@ public DateTimePropertyConfiguration Property( } /// - /// Configures a property that is defined on this type. + /// Configures a property that is defined on this type. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property. @@ -209,7 +209,7 @@ public DateTimePropertyConfiguration Property(Expression - /// Configures a property that is defined on this type. + /// Configures a property that is defined on this type. /// /// A lambda expression representing the property to be configured. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty /// A configuration object that can be used to configure the property.