Answers for "turn off lazy loading in entity framework"

1

turn off lazy loading in entity framework

public partial class SchoolDBEntities : DbContext
{
    public SchoolDBEntities(): base("name=SchoolDBEntities")
    {
        this.Configuration.LazyLoadingEnabled = false;
    }

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
    }
}
Posted by: Guest on July-28-2020
1

turn off lazy loading in entity framework

this.Configuration.LazyLoadingEnabled = false;
Posted by: Guest on July-28-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language