本文整理匯總了C#中Attributes.Fill方法的典型用法代碼示例。如果您正苦於以下問題:C# Attributes.Fill方法的具體用法?C# Attributes.Fill怎麽用?C# Attributes.Fill使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Attributes
的用法示例。
在下文中一共展示了Attributes.Fill方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: GetAll
public static AttributesCollection GetAll() {
resourceSchema.Dal.Attributes dbo = null;
try {
dbo = new resourceSchema.Dal.Attributes();
System.Data.DataSet ds = dbo.Attributes_Select_All();
AttributesCollection collection = new AttributesCollection();
if (GlobalTools.IsSafeDataSet(ds)) {
for (int i = 0; (i < ds.Tables[0].Rows.Count); i = (i + 1)) {
Attributes obj = new Attributes();
obj.Fill(ds.Tables[0].Rows[i]);
if ((obj != null)) {
collection.Add(obj);
}
}
}
return collection;
}
catch (System.Exception ) {
throw;
}
finally {
if ((dbo != null)) {
dbo.Dispose();
}
}
}
示例2: Load
public static Attributes Load(System.Nullable<int> Id) {
resourceSchema.Dal.Attributes dbo = null;
try {
dbo = new resourceSchema.Dal.Attributes();
System.Data.DataSet ds = dbo.Attributes_Select_One(Id);
Attributes obj = null;
if (GlobalTools.IsSafeDataSet(ds)) {
if ((ds.Tables[0].Rows.Count > 0)) {
obj = new Attributes();
obj.Fill(ds.Tables[0].Rows[0]);
}
}
return obj;
}
catch (System.Exception ) {
throw;
}
finally {
if ((dbo != null)) {
dbo.Dispose();
}
}
}