CachedRepository
A sample demonstrating the CachedRepository pattern
파일 탐색기
최종 버전 다운로드 (.zip)- AccountController.cs
- ApplicationUser.cs
- Author.cs
- BaseEntity.cs
- Resource.cs
- ResourceType.cs
- AuthorRepository.cs
- CachedAuthorRepositoryDecorator.cs
- EfRepository.cs
- ApplicationDbContext.cs
- IReadOnlyRepository.cs
- IRepository.cs
- EmailSenderExtensions.cs
- UrlHelperExtensions.cs
- 20180824201952_Initial.cs
- 20180824201952_Initial.Designer.cs
- ApplicationDbContextModelSnapshot.cs
- _Layout.cshtml
- _ManageNav.cshtml
- _StatusMessage.cshtml
- _ViewImports.cshtml
- ChangePassword.cshtml
- ChangePassword.cshtml.cs
- Disable2fa.cshtml
- Disable2fa.cshtml.cs
- EnableAuthenticator.cshtml
- EnableAuthenticator.cshtml.cs
- ExternalLogins.cshtml
- ExternalLogins.cshtml.cs
- GenerateRecoveryCodes.cshtml
- GenerateRecoveryCodes.cshtml.cs
- Index.cshtml
- Index.cshtml.cs
- ManageNavPages.cs
- ResetAuthenticator.cshtml
- ResetAuthenticator.cshtml.cs
- SetPassword.cshtml
- SetPassword.cshtml.cs
- ShowRecoveryCodes.cshtml
- ShowRecoveryCodes.cshtml.cs
- TwoFactorAuthentication.cshtml
- TwoFactorAuthentication.cshtml.cs
- _ViewImports.cshtml
- AccessDenied.cshtml
- AccessDenied.cshtml.cs
- ConfirmEmail.cshtml
- ConfirmEmail.cshtml.cs
- ExternalLogin.cshtml
- ExternalLogin.cshtml.cs
- ForgotPassword.cshtml
- ForgotPassword.cshtml.cs
- ForgotPasswordConfirmation.cshtml
- ForgotPasswordConfirmation.cshtml.cs
- Lockout.cshtml
- Lockout.cshtml.cs
- Login.cshtml
- Login.cshtml.cs
- LoginWith2fa.cshtml
- LoginWith2fa.cshtml.cs
- LoginWithRecoveryCode.cshtml
- LoginWithRecoveryCode.cshtml.cs
- Register.cshtml
- Register.cshtml.cs
- ResetPassword.cshtml
- ResetPassword.cshtml.cs
- ResetPasswordConfirmation.cshtml
- ResetPasswordConfirmation.cshtml.cs
- SignedOut.cshtml
- SignedOut.cshtml.cs
- _Layout.cshtml
- _LoginPartial.cshtml
- _ValidationScriptsPartial.cshtml
- _ViewImports.cshtml
- _ViewStart.cshtml
- About.cshtml
- About.cshtml.cs
- Contact.cshtml
- Contact.cshtml.cs
- Error.cshtml
- Error.cshtml.cs
- Index.cshtml
- Index.cshtml.cs
- EmailSender.cs
- IEmailSender.cs
- site.css
- site.min.css
- banner1.svg
- banner2.svg
- banner3.svg
- banner4.svg
- site.js
- site.min.js
- bootstrap-theme.css
- bootstrap-theme.css.map
- bootstrap-theme.min.css.map
- bootstrap.css
- bootstrap.css.map
- bootstrap.min.css.map
- glyphicons-halflings-regular.eot
- glyphicons-halflings-regular.svg
- glyphicons-halflings-regular.ttf
- glyphicons-halflings-regular.woff
- glyphicons-halflings-regular.woff2
- bootstrap.js
- npm.js
- .bower.json
- LICENSE
- jquery.js
- jquery.min.map
- .bower.json
- LICENSE.txt
- additional-methods.js
- jquery.validate.js
- .bower.json
- LICENSE.md
- .bower.json
- jquery.validate.unobtrusive.js
- jquery.validate.unobtrusive.min.js
- favicon.ico
- appsettings.Development.json
- appsettings.json
- bundleconfig.json
- CachedRepoSample.csproj
- Constants.cs
- Program.cs
- Startup.cs
- .gitignore
- CachedRepoSample.sln
- LICENSE
- README.md
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/ardalis/CachedRepository
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd CachedRepository
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. .NET
보통 추천dotnet ef database update
이 명령어를 터미널에 그대로 입력해 실행하세요.
dotnet run
프로젝트를 빌드하고 바로 실행합니다.
dotnet ef migrations add Initial
이 명령어를 터미널에 그대로 입력해 실행하세요.
dotnet run 실행 후 터미널에 나타나는 안내 메시지나 주소를 확인하세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
// repository documentation
Was this content helpful?
(0 ratings)
