您好,登錄后才能下訂單哦!
XMLopr xmlpro = new XMLopr(); string xmlpath = WebConfigurationManager.AppSettings["fileinfo_Filexmlpath"].ToString(); xmlpath = Server.MapPath(xmlpath); Dictionary<string, string> filedmap = xmlpro.ReadXmlFiled(xmlpath); if (filedmap == null) { result="讀取字段匹配設置文檔失敗!"; return result; } int i = 0; foreach (KeyValuePair<string,string> keypair in filedmap) { //獲取值 string value =dr[keypair.Key.Trim()]==null?"":dr[keypair.Key.Trim()].ToString().Trim(); //獲取映射字段 string mapfiled = keypair.Value.Trim(); //判斷映射字段類型 PropertyInfo property = fileModel.GetType().GetProperty(mapfiled); if (property.PropertyType.Name.ToLower().Equals("string")) { property.SetValue(fileModel,value,null); } else if (property.PropertyType.Name.Equals("int32")) { property.SetValue(fileModel, int.Parse(value), null); } else if (property.PropertyType.Name.Equals("DateTime")) { if(value.Trim()!=string.Empty) property.SetValue(fileModel,DateTime.Parse(value), null); } }
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。