ComplexPropertyBuilder.IndexerProperty 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
IndexerProperty(Type, String) |
傳回物件,這個物件可用來設定複雜類型的屬性。 如果沒有具有指定名稱的屬性存在,則會加入新的屬性。 |
IndexerProperty<TProperty>(String) |
傳回物件,這個物件可用來設定複雜類型的屬性。 如果沒有具有指定名稱的屬性存在,則會加入新的屬性。 |
IndexerProperty(Type, String)
傳回物件,這個物件可用來設定複雜類型的屬性。 如果沒有具有指定名稱的屬性存在,則會加入新的屬性。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.ComplexTypePropertyBuilder IndexerProperty (Type propertyType, string propertyName);
abstract member IndexerProperty : Type * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.ComplexTypePropertyBuilder
override this.IndexerProperty : Type * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.ComplexTypePropertyBuilder
Public Overridable Function IndexerProperty (propertyType As Type, propertyName As String) As ComplexTypePropertyBuilder
參數
- propertyType
- Type
要設定的屬性型別。
- propertyName
- String
要設定的屬性名稱。
傳回
可用來設定 屬性的物件。
備註
索引子屬性會使用提供屬性名稱的 索引子 ,儲存在實體中。
適用於
IndexerProperty<TProperty>(String)
傳回物件,這個物件可用來設定複雜類型的屬性。 如果沒有具有指定名稱的屬性存在,則會加入新的屬性。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.ComplexTypePropertyBuilder<TProperty> IndexerProperty<TProperty> (string propertyName);
abstract member IndexerProperty : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.ComplexTypePropertyBuilder<'Property>
override this.IndexerProperty : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.ComplexTypePropertyBuilder<'Property>
Public Overridable Function IndexerProperty(Of TProperty) (propertyName As String) As ComplexTypePropertyBuilder(Of TProperty)
類型參數
- TProperty
要設定的屬性型別。
參數
- propertyName
- String
要設定的屬性名稱。
傳回
可用來設定 屬性的物件。
備註
索引子屬性會使用提供屬性名稱的 索引子 ,儲存在實體中。