개정판 f37c5383
Fix: 심볼 검색 속도 개선(Component를 데이타베이스에 저장한 프로젝트는 심볼 사용 여부를 데이타베이스에서 조회)
Change-Id: I06c51ee6fd38d4c5b61ac70df308f1153fae5914
ID2.Manager/ID2.Manager.Controller/Controllers/DocumentController.cs | ||
---|---|---|
200 | 200 |
} |
201 | 201 |
} |
202 | 202 |
|
203 |
public IEnumerable<ID2Symbol> FindID2Symbols(string Name) |
|
203 |
public IEnumerable<ID2Symbol> FindID2Symbols(string Name, bool XmlOnly)
|
|
204 | 204 |
{ |
205 | 205 |
IEnumerable<ID2Symbol> results = null; |
206 | 206 |
|
... | ... | |
208 | 208 |
{ |
209 | 209 |
using (DocumentRepository rep = new DocumentRepository(this._ID2CONNSTR)) |
210 | 210 |
{ |
211 |
return rep.FindID2Symbols(Name); |
|
211 |
return rep.FindID2Symbols(Name, XmlOnly); |
|
212 |
} |
|
213 |
} |
|
214 |
catch (Exception ex) |
|
215 |
{ |
|
216 |
throw ex; |
|
217 |
} |
|
218 |
|
|
219 |
return results; |
|
220 |
} |
|
221 |
|
|
222 |
public IEnumerable<ID2Configuration> GetID2Configurations() |
|
223 |
{ |
|
224 |
IEnumerable<ID2Configuration> results = null; |
|
225 |
|
|
226 |
try |
|
227 |
{ |
|
228 |
using (DocumentRepository rep = new DocumentRepository(this._ID2CONNSTR)) |
|
229 |
{ |
|
230 |
return rep.GetID2Configurations(); |
|
212 | 231 |
} |
213 | 232 |
} |
214 | 233 |
catch (Exception ex) |
내보내기 Unified diff