本文整理汇总了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();
}
}
}