示例#1
0
 public static MailLog Load(DbDataReader reader, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <MailLog>(reader, "MailLog", otherwise));
 }
 /// <summary>
 /// Loads a record from the AutocompletePhrase table in the database given the supplied Sql command object.
 /// You can use just a WHERE clause as your Sql - see example.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>
 /// var sql = new Sql("where name=", Web.Request["name"].SqlizeText());
 /// var g = GenTest.Load(sql);
 /// </example>
 /// <param name="sql"></param>
 /// <returns>An instance of AutocompletePhrase containing the data in the record</returns>
 public static AutocompletePhrase Load(Sql sql)
 {
     return(ActiveRecordLoader.Load <AutocompletePhrase>(sql, "AutocompletePhrase"));
 }
 /// <summary>
 /// Loads a record given a DataReader containing data from the AutocompletePhrase table in the database.
 /// You should find that Load(Sql) or LoadID(id) cover most scenarios but you can use this method if you need to.
 /// When using a DataReader be careful to ensure you close it using reader.Close() to avoid connection leaks.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>var g = GenTest.Load(reader);</example>
 /// <param name="sql"></param>
 /// <returns>An instance of AutocompletePhrase containing the data in the record</returns>
 public static AutocompletePhrase Load(DbDataReader reader)
 {
     return(ActiveRecordLoader.Load <AutocompletePhrase>(reader, "AutocompletePhrase"));
 }
 /// <summary>
 /// Loads a record from the ArticleDocument table in the database given the supplied Sql command object.
 /// You can use just a WHERE clause as your Sql - see example.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>
 /// var sql = new Sql("where name=", Web.Request["name"].SqlizeText());
 /// var g = GenTest.Load(sql);
 /// </example>
 /// <param name="sql"></param>
 /// <returns>An instance of ArticleDocument containing the data in the record</returns>
 public static ArticleDocument Load(Sql sql)
 {
     return(ActiveRecordLoader.Load <ArticleDocument>(sql, "ArticleDocument"));
 }
 /// <summary>
 /// Loads a record given a DataReader containing data from the ArticleDocument table in the database.
 /// You should find that Load(Sql) or LoadID(id) cover most scenarios but you can use this method if you need to.
 /// When using a DataReader be careful to ensure you close it using reader.Close() to avoid connection leaks.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>var g = GenTest.Load(reader);</example>
 /// <param name="sql"></param>
 /// <returns>An instance of ArticleDocument containing the data in the record</returns>
 public static ArticleDocument Load(DbDataReader reader)
 {
     return(ActiveRecordLoader.Load <ArticleDocument>(reader, "ArticleDocument"));
 }
 /// <summary>
 /// Loads a record from the GalleryCategory table in the database given the supplied Sql command object.
 /// You can use just a WHERE clause as your Sql - see example.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>
 /// var sql = new Sql("where name=", Web.Request["name"].SqlizeText());
 /// var g = GenTest.Load(sql);
 /// </example>
 /// <param name="sql"></param>
 /// <returns>An instance of GalleryCategory containing the data in the record</returns>
 public static GalleryCategory Load(Sql sql)
 {
     return(ActiveRecordLoader.Load <GalleryCategory>(sql, "GalleryCategory"));
 }
 /// <summary>
 /// Loads a record given a DataReader containing data from the GalleryCategory table in the database.
 /// You should find that Load(Sql) or LoadID(id) cover most scenarios but you can use this method if you need to.
 /// When using a DataReader be careful to ensure you close it using reader.Close() to avoid connection leaks.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>var g = GenTest.Load(reader);</example>
 /// <param name="sql"></param>
 /// <returns>An instance of GalleryCategory containing the data in the record</returns>
 public static GalleryCategory Load(DbDataReader reader)
 {
     return(ActiveRecordLoader.Load <GalleryCategory>(reader, "GalleryCategory"));
 }
示例#8
0
 public static ShoppingCart Load(Sql sql, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <ShoppingCart>(sql, "ShoppingCart", otherwise));
 }
示例#9
0
 /// <summary>
 /// Loads a record given a DataReader containing data from the ShoppingCart table in the database.
 /// You should find that Load(Sql) or LoadID(id) cover most scenarios but you can use this method if you need to.
 /// When using a DataReader be careful to ensure you close it using reader.Close() to avoid connection leaks.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>var g = GenTest.Load(reader);</example>
 /// <param name="sql"></param>
 /// <returns>An instance of ShoppingCart containing the data in the record</returns>
 public static ShoppingCart Load(DbDataReader reader)
 {
     return(ActiveRecordLoader.Load <ShoppingCart>(reader, "ShoppingCart"));
 }
示例#10
0
 public static HomepageSlide Load(DbDataReader reader, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <HomepageSlide>(reader, "HomepageSlide", otherwise));
 }
示例#11
0
 /// <summary>
 /// Loads a record from the ShoppingCart table in the database given the supplied Sql command object.
 /// You can use just a WHERE clause as your Sql - see example.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>
 /// var sql = new Sql("where name=", Web.Request["name"].SqlizeText());
 /// var g = GenTest.Load(sql);
 /// </example>
 /// <param name="sql"></param>
 /// <returns>An instance of ShoppingCart containing the data in the record</returns>
 public static ShoppingCart Load(Sql sql)
 {
     return(ActiveRecordLoader.Load <ShoppingCart>(sql, "ShoppingCart"));
 }
示例#12
0
 /// <summary>
 /// Loads a record given a DataReader containing data from the HomepageSlide table in the database.
 /// You should find that Load(Sql) or LoadID(id) cover most scenarios but you can use this method if you need to.
 /// When using a DataReader be careful to ensure you close it using reader.Close() to avoid connection leaks.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>var g = GenTest.Load(reader);</example>
 /// <param name="sql"></param>
 /// <returns>An instance of HomepageSlide containing the data in the record</returns>
 public static HomepageSlide Load(DbDataReader reader)
 {
     return(ActiveRecordLoader.Load <HomepageSlide>(reader, "HomepageSlide"));
 }
示例#13
0
 public static HomepageSlide Load(Sql sql, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <HomepageSlide>(sql, "HomepageSlide", otherwise));
 }
示例#14
0
 /// <summary>
 /// Loads a record from the HomepageSlide table in the database given the supplied Sql command object.
 /// You can use just a WHERE clause as your Sql - see example.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>
 /// var sql = new Sql("where name=", Web.Request["name"].SqlizeText());
 /// var g = GenTest.Load(sql);
 /// </example>
 /// <param name="sql"></param>
 /// <returns>An instance of HomepageSlide containing the data in the record</returns>
 public static HomepageSlide Load(Sql sql)
 {
     return(ActiveRecordLoader.Load <HomepageSlide>(sql, "HomepageSlide"));
 }
示例#15
0
 /// <summary>
 /// Loads a record given a DataReader containing data from the MapRegion table in the database.
 /// You should find that Load(Sql) or LoadID(id) cover most scenarios but you can use this method if you need to.
 /// When using a DataReader be careful to ensure you close it using reader.Close() to avoid connection leaks.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>var g = GenTest.Load(reader);</example>
 /// <param name="sql"></param>
 /// <returns>An instance of MapRegion containing the data in the record</returns>
 public static MapRegion Load(DbDataReader reader)
 {
     return(ActiveRecordLoader.Load <MapRegion>(reader, "MapRegion"));
 }
示例#16
0
 public static ShoppingCart Load(DbDataReader reader, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <ShoppingCart>(reader, "ShoppingCart", otherwise));
 }
示例#17
0
 public static MapRegion Load(DbDataReader reader, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <MapRegion>(reader, "MapRegion", otherwise));
 }
示例#18
0
 /// <summary>
 /// Loads a record from the Event table in the database given the supplied Sql command object.
 /// You can use just a WHERE clause as your Sql - see example.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>
 /// var sql = new Sql("where name=", Web.Request["name"].SqlizeText());
 /// var g = GenTest.Load(sql);
 /// </example>
 /// <param name="sql"></param>
 /// <returns>An instance of Event containing the data in the record</returns>
 public static Event Load(Sql sql)
 {
     return(ActiveRecordLoader.Load <Event>(sql, "Event"));
 }
示例#19
0
 public static GalleryCategory Load(Sql sql, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <GalleryCategory>(sql, "GalleryCategory", otherwise));
 }
示例#20
0
 public static Event Load(Sql sql, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <Event>(sql, "Event", otherwise));
 }
示例#21
0
 public static GalleryCategory Load(DbDataReader reader, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <GalleryCategory>(reader, "GalleryCategory", otherwise));
 }
示例#22
0
 /// <summary>
 /// Loads a record given a DataReader containing data from the Event table in the database.
 /// You should find that Load(Sql) or LoadID(id) cover most scenarios but you can use this method if you need to.
 /// When using a DataReader be careful to ensure you close it using reader.Close() to avoid connection leaks.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>var g = GenTest.Load(reader);</example>
 /// <param name="sql"></param>
 /// <returns>An instance of Event containing the data in the record</returns>
 public static Event Load(DbDataReader reader)
 {
     return(ActiveRecordLoader.Load <Event>(reader, "Event"));
 }
示例#23
0
 public static ArticleDocument Load(Sql sql, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <ArticleDocument>(sql, "ArticleDocument", otherwise));
 }
示例#24
0
 public static Event Load(DbDataReader reader, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <Event>(reader, "Event", otherwise));
 }
示例#25
0
 public static ArticleDocument Load(DbDataReader reader, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <ArticleDocument>(reader, "ArticleDocument", otherwise));
 }
示例#26
0
 /// <summary>
 /// Loads a record from the MapRegion table in the database given the supplied Sql command object.
 /// You can use just a WHERE clause as your Sql - see example.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>
 /// var sql = new Sql("where name=", Web.Request["name"].SqlizeText());
 /// var g = GenTest.Load(sql);
 /// </example>
 /// <param name="sql"></param>
 /// <returns>An instance of MapRegion containing the data in the record</returns>
 public static MapRegion Load(Sql sql)
 {
     return(ActiveRecordLoader.Load <MapRegion>(sql, "MapRegion"));
 }
 public static AutocompletePhrase Load(Sql sql, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <AutocompletePhrase>(sql, "AutocompletePhrase", otherwise));
 }
示例#28
0
 public static MapRegion Load(Sql sql, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <MapRegion>(sql, "MapRegion", otherwise));
 }
 public static AutocompletePhrase Load(DbDataReader reader, Otherwise otherwise)
 {
     return(ActiveRecordLoader.Load <AutocompletePhrase>(reader, "AutocompletePhrase", otherwise));
 }
示例#30
0
 /// <summary>
 /// Loads a record given a DataReader containing data from the MailLog table in the database.
 /// You should find that Load(Sql) or LoadID(id) cover most scenarios but you can use this method if you need to.
 /// When using a DataReader be careful to ensure you close it using reader.Close() to avoid connection leaks.
 /// If found in the cache, record will be loaded from the cache.
 /// </summary>
 /// <example>var g = GenTest.Load(reader);</example>
 /// <param name="sql"></param>
 /// <returns>An instance of MailLog containing the data in the record</returns>
 public static MailLog Load(DbDataReader reader)
 {
     return(ActiveRecordLoader.Load <MailLog>(reader, "MailLog"));
 }