프로젝트

일반

사용자정보

개정판 f37c5383

IDf37c5383b37b5a2b1dc7a7fce4c6bf1fbcf611e8
상위 b1aa2a8c
하위 f30db61e

백흠경이(가) 약 일년 전에 추가함

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

클립보드 이미지 추가 (최대 크기: 500 MB)