• EntityLoadType for IEntitySource.GetAsync in Composition API

    Hello,

    what is the effect of using the different EntityLoadTypes? I can't see any difference on the IEntity object returned when using GetAsync:

    var query = Query.From("Person").Select("FirstName", "LastName").Where("CentralAccount = 'xyz'");
    var…