コード例 #1
0
        private bool LoadByPrimaryKeyDynamic(System.String userId, System.String roleId)
        {
            AspNetUserRolesQuery query = new AspNetUserRolesQuery();

            query.Where(query.UserId == userId && query.RoleId == roleId);
            return(this.Load(query));
        }
コード例 #2
0
 protected void InitQuery(AspNetUserRolesQuery query)
 {
     query.OnLoadDelegate = this.OnQueryLoaded;
     if (!query.tg2.HasConnection)
     {
         query.tg2.Connection = ((IEntityCollection)this).Connection;
     }
 }
コード例 #3
0
 public bool Load(AspNetUserRolesQuery query)
 {
     this.query = query;
     InitQuery(this.query);
     return(Query.Load());
 }