EntityEntry<TEntity>.ComplexProperty Metode
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Overload
| ComplexProperty<TProperty>(IComplexProperty) |
Menyediakan akses ke informasi dan operasi pelacakan perubahan untuk properti jenis kompleks tertentu dari entitas ini. |
| ComplexProperty<TProperty>(Expression<Func<TEntity,TProperty>>) |
Menyediakan akses ke informasi dan operasi pelacakan perubahan untuk properti jenis kompleks tertentu dari entitas ini. |
| ComplexProperty<TProperty>(String) |
Menyediakan akses ke informasi dan operasi pelacakan perubahan untuk properti jenis kompleks tertentu dari entitas ini. |
ComplexProperty<TProperty>(IComplexProperty)
- Sumber:
- EntityEntry%60.cs
- Sumber:
- EntityEntry%60.cs
Menyediakan akses ke informasi dan operasi pelacakan perubahan untuk properti jenis kompleks tertentu dari entitas ini.
public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<TEntity,TProperty> ComplexProperty<TProperty>(Microsoft.EntityFrameworkCore.Metadata.IComplexProperty complexProperty);
override this.ComplexProperty : Microsoft.EntityFrameworkCore.Metadata.IComplexProperty -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<'Entity, 'Property (requires 'Entity : null)>
Public Overridable Function ComplexProperty(Of TProperty) (complexProperty As IComplexProperty) As ComplexPropertyEntry(Of TEntity, TProperty)
Jenis parameter
- TProperty
Jenis properti.
Parameter
- complexProperty
- IComplexProperty
Properti untuk mengakses informasi dan operasi.
Mengembalikan
Objek yang mengekspos informasi dan operasi pelacakan perubahan untuk properti tertentu.
Keterangan
Lihat Mengakses entitas terlacak di EF Core untuk informasi dan contoh selengkapnya.
Berlaku untuk
ComplexProperty<TProperty>(Expression<Func<TEntity,TProperty>>)
- Sumber:
- EntityEntry%60.cs
- Sumber:
- EntityEntry%60.cs
Menyediakan akses ke informasi dan operasi pelacakan perubahan untuk properti jenis kompleks tertentu dari entitas ini.
public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<TEntity,TProperty> ComplexProperty<TProperty>(System.Linq.Expressions.Expression<Func<TEntity,TProperty>> propertyExpression);
override this.ComplexProperty : System.Linq.Expressions.Expression<Func<'Entity, 'Property>> -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<'Entity, 'Property (requires 'Entity : null)>
Public Overridable Function ComplexProperty(Of TProperty) (propertyExpression As Expression(Of Func(Of TEntity, TProperty))) As ComplexPropertyEntry(Of TEntity, TProperty)
Jenis parameter
- TProperty
Parameter
- propertyExpression
- Expression<Func<TEntity,TProperty>>
Ekspresi lambda yang mewakili properti untuk mengakses informasi dan operasi.
Mengembalikan
Objek yang mengekspos informasi dan operasi pelacakan perubahan untuk properti tertentu.
Keterangan
Lihat Mengakses entitas terlacak di EF Core untuk informasi dan contoh selengkapnya.
Berlaku untuk
ComplexProperty<TProperty>(String)
- Sumber:
- EntityEntry%60.cs
- Sumber:
- EntityEntry%60.cs
Menyediakan akses ke informasi dan operasi pelacakan perubahan untuk properti jenis kompleks tertentu dari entitas ini.
public virtual Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<TEntity,TProperty> ComplexProperty<TProperty>(string propertyName);
override this.ComplexProperty : string -> Microsoft.EntityFrameworkCore.ChangeTracking.ComplexPropertyEntry<'Entity, 'Property (requires 'Entity : null)>
Public Overridable Function ComplexProperty(Of TProperty) (propertyName As String) As ComplexPropertyEntry(Of TEntity, TProperty)
Jenis parameter
- TProperty
Jenis properti.
Parameter
- propertyName
- String
Properti untuk mengakses informasi dan operasi.
Mengembalikan
Objek yang mengekspos informasi dan operasi pelacakan perubahan untuk properti tertentu.
Keterangan
Lihat Mengakses entitas terlacak di EF Core untuk informasi dan contoh selengkapnya.