/// <summary>
 /// Searches for <see cref="Country"/> items with the given terms.
 /// </summary>
 public static CountryCollection Search(string terms)
 {
     BootFX.Common.Data.SqlSearcher searcher = new BootFX.Common.Data.SqlSearcher(typeof(Country), terms);
     return ((CountryCollection)(searcher.ExecuteEntityCollection()));
 }
Example #2
0
 /// <summary>
 /// Searches for <see cref="LookupValue"/> items with the given terms.
 /// </summary>
 public static LookupValueCollection Search(string terms)
 {
     BootFX.Common.Data.SqlSearcher searcher = new BootFX.Common.Data.SqlSearcher(typeof(LookupValue), terms);
     return((LookupValueCollection)(searcher.ExecuteEntityCollection()));
 }
 /// <summary>
 /// Searches for <see cref="TableCatalogItem"/> items with the given terms.
 /// </summary>
 public static TableCatalogItemCollection Search(string terms)
 {
     BootFX.Common.Data.SqlSearcher searcher = new BootFX.Common.Data.SqlSearcher(typeof(TableCatalogItem), terms);
     return ((TableCatalogItemCollection)(searcher.ExecuteEntityCollection()));
 }
 /// <summary>
 /// Searches for <see cref="LogonToken"/> items with the given terms.
 /// </summary>
 public static LogonTokenCollection Search(string terms)
 {
     BootFX.Common.Data.SqlSearcher searcher = new BootFX.Common.Data.SqlSearcher(typeof(LogonToken), terms);
     return ((LogonTokenCollection)(searcher.ExecuteEntityCollection()));
 }
 /// <summary>
 /// Searches for <see cref="ShmResource"/> items with the given terms.
 /// </summary>
 public static ShmResourceCollection Search(string terms)
 {
     BootFX.Common.Data.SqlSearcher searcher = new BootFX.Common.Data.SqlSearcher(typeof(ShmResource), terms);
     return ((ShmResourceCollection)(searcher.ExecuteEntityCollection()));
 }
Example #6
0
 /// <summary>
 /// Searches for <see cref="ConfigItem"/> items with the given terms.
 /// </summary>
 public static ConfigItemCollection Search(string terms)
 {
     BootFX.Common.Data.SqlSearcher searcher = new BootFX.Common.Data.SqlSearcher(typeof(ConfigItem), terms);
     return((ConfigItemCollection)(searcher.ExecuteEntityCollection()));
 }