Show / Hide Table of Contents

    Embedded Property

    Embedded property is the short name for the property in the model class where either ModelEmbeddedAttribute or SqlEmbeddedAttribute is applied. It is the property in a model class that references another model or another raw SQL query.

    You can used the embedded property to implement one-to-one or one-to-many relationship between two model classes.

    See ModelEmbeddedAttribute and SqlEmbeddedAttribute for more info.

    Back to top Generated by Appeon