コード例 #1
0
 public ProductAttributeMapCollection FetchAll()
 {
     ProductAttributeMapCollection coll = new ProductAttributeMapCollection();
     Query qry = new Query(ProductAttributeMap.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #2
0
 public ProductAttributeMapCollection FetchByQuery(Query qry)
 {
     ProductAttributeMapCollection coll = new ProductAttributeMapCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
コード例 #3
0
 public ProductAttributeMapCollection FetchByID(object AttributeId)
 {
     ProductAttributeMapCollection coll = new ProductAttributeMapCollection().Where("AttributeId", AttributeId).Load();
     return coll;
 }