본문 바로가기

error

(10)
[react-native] build error : Could not expand ZIP > {{project}}> react-native run-android react-native 빌드이 후 Could not expand ZIP 만난다면 ubuntu > {{project}}/android/ ./gradlew clean windows > {{project}}/android/ ./gradlew.bat clean
[EntityFramework]Unable to update the EntitySet because it has a DefiningQuery and no <UpdateFunction> element exists in the <ModificationFunctionMapping> element to support the current operation. Unable to update the EntitySet {{TABLE_NAME}} because it has a DefiningQuery and no element exists in the element to support the current operation.해당 Entity 에 primary key 가 있는지 확인 합니다. (대부분 pk가 없어서 발생하는 오류임.)
[node.js] grunt build after ESLint : ERROR consistent-this var C = this; -> var C; C = this; 참조 : https://goo.gl/qubw6z
[c#] DLL 'SqlServerSpatial140.dll'을(를) 로드할 수 없습니다. 지정된 모듈을 찾을 수 없습니다. (예외가 발생한 HRESULT: 0x8007007E) An exception of type 'System.DllNotFoundException' occurred in Microsoft.SqlServer.Types.dll but was not handled in user code Additional information: DLL 'SqlServerSpatial140.dll'을(를) 로드할 수 없습니다. 지정된 모듈을 찾을 수 없습니다. (예외가 발생한 HRESULT: 0x8007007E) 참조https://goo.gl/WEKl7c https://goo.gl/7OewbA https://goo.gl/oYEqLt
[mssql] Error in Importing/Exporting Geography/Geometry Columns in SQL Server 2008 Management Studio C:\Program Files (x86)\Microsoft SQL Server\100\DTS\MappingFiles\MSSQLToSSIS10.XML geometry DT_IMAGE geography DT_IMAGE 1. 관리자 권한이 필요하므로 문서 폴더에 다른 이름으로 저장한다. 2. 문서에 복사한 xml 파일을 클립보드 복사 후 C:\Program Files (x86)\Microsoft SQL Server\100\DTS\MappingFiles 폴더로 복사한다. 3. 복사한 파일을 MSSQLToSSIS10.XML로 이름을 바꿔준다. 4. SSIS 로 파일 내보내기가 완료되지 않으면 Sql Service 를 재시작 해준다. 5. 내보내기에 identity column 데이터 옵션(ID 입력) 체크가 되지..
[VSCode] Cannot connect to runtime process, timeout after 10000 ms - (reason: Cannot connect to the target: connect ECONNREFUSED 127.0.0.1:9223). vscode 런처 세팅방법http://kwange.tistory.com/entry/Ionic2Visual-Studio-Code-chrome-debugger-setting
Uncaught TypeError: Cannot use 'in' operator to search for json parse 가 정상적으로 이뤄지지 않았거나 parse 하지 않았거나 할 때 발생합니다. 1. $.parseJSON(value) 2. JSON.parse(value) 형태로 변경하세요. 출처 : https://goo.gl/ilYmrj
error CS1061: 'int' does not contain a definition for 'ToList' and no extension method 'ToList' accepting a first argument of type 'int' could be found (are you missing a using directive or an assembly reference?) error CS1061: 'int' does not contain a definition for 'ToList' and no extension method 'ToList' accepting a first argument of type 'int' could be found (are you missing a using directive or an assembly reference?) 1. 원인 entoty framework 에 매핑 한 stored procedure 가 model 을 제대로 생성 할 수 없을때 발생하는 오류입니다.1-1. 예sp 내부에 #TEMP 테이블 join이나 select 가 있으며 list 로 가져올 컬럼을 매핑 할 수 없을 때 발생합니다. 즉, var onbidObjectList =..