private bool LoadByPrimaryKeyDynamic(System.String loginProvider, System.String providerKey, System.String userId)
        {
            AspNetUserLoginsQuery query = new AspNetUserLoginsQuery();

            query.Where(query.LoginProvider == loginProvider && query.ProviderKey == providerKey && query.UserId == userId);
            return(this.Load(query));
        }
 protected void InitQuery(AspNetUserLoginsQuery query)
 {
     query.OnLoadDelegate = this.OnQueryLoaded;
     if (!query.tg2.HasConnection)
     {
         query.tg2.Connection = ((IEntityCollection)this).Connection;
     }
 }
 public bool Load(AspNetUserLoginsQuery query)
 {
     this.query = query;
     InitQuery(this.query);
     return(Query.Load());
 }