Example #1
0
 /// <summary>
 /// decodes the serailized panel Dataitem PK and sets the panel to it
 /// </summary>
 /// <param name="panel">active panel</param>
 /// <param name="queryString">URL-encoded PK</param>
 void SetRoutedPKForPanel(_min.Models.Panel panel, System.Collections.Specialized.NameValueCollection queryString)
 {
     DataRow row = mm.WebDriver.PKColRowFormat(panel);
     for (int i = 0; i < queryString.Count; i++)
     {
         string decoded = Server.UrlDecode(queryString[i]);
         if (row.Table.Columns[i].DataType == typeof(int))
             row[i] = Int32.Parse(decoded);
         else
             row[i] = decoded;
     }
     panel.PK = row;
 }
Example #2
0
 public IDbJoin Join(_min.Models.FK fk, string alias)
 {
     return new InnerJoin(fk, alias);
 }
Example #3
0
 set => SetProperty(ref _min, value);
Example #4
0
 public IDbJoin Join(_min.Models.FK fk)
 {
     return new InnerJoin(fk);
 }