개정판 cb806a91
AliveGrid count expander열림, dashboard 테두리
Change-Id: Id50a07c853f65d7037685ba4c220cdd739c10fca
ConvertService/ServiceBase/Markus.Service.StationController/Extensions/ConvertItemChangeValue.cs | ||
---|---|---|
9 | 9 |
{ |
10 | 10 |
public static class ConvertItemEx |
11 | 11 |
{ |
12 |
public static void ChangeValues(object changeitem, object newitem)//그리드에 있는 컬렉션, 디비에 있는 컬렉션
|
|
12 |
public static void ChangeValues(object changeitem, object newitem) |
|
13 | 13 |
{ |
14 |
var changeProp = changeitem.GetType().GetProperties();//그리드
|
|
15 |
var newProp = newitem.GetType().GetProperties();//디비
|
|
14 |
var changeProp = changeitem.GetType().GetProperties(); |
|
15 |
var newProp = newitem.GetType().GetProperties(); |
|
16 | 16 |
|
17 |
foreach (var item in changeProp)//그리드 포문
|
|
17 |
foreach (var item in changeProp) |
|
18 | 18 |
{ |
19 | 19 |
|
20 |
var newinfo = newProp.Where(x => x.Name == item.Name);//그리드와 디비 조건에 맞는 오브젝트
|
|
20 |
var newinfo = newProp.Where(x => x.Name == item.Name); |
|
21 | 21 |
|
22 | 22 |
if(newinfo.Count() > 0) |
23 | 23 |
{ |
24 | 24 |
if (item.GetValue(changeitem) != newinfo.First().GetValue(newitem)) |
25 | 25 |
{ |
26 |
item.SetValue(changeitem, newinfo.First().GetValue(newitem));//오브젝트, 객체
|
|
26 |
item.SetValue(changeitem, newinfo.First().GetValue(newitem)); |
|
27 | 27 |
} |
28 | 28 |
} |
29 | 29 |
} |
내보내기 Unified diff