Skip to content

PavelPustahod/HIMS.EF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HIMS.EF

Human resource management system 📚

  1. How to resolve issue with PK in views generated by EF?
  1. Good tutorial in ENGLISH to read about EF

  1. If you add new entity, procedure, view and etc., you need:

    a) run script to add it to database on your local server
    b) save script in HIMS.Database solution in an appropriate folder
    c) update your HIMS.edmx model from your database
    d) commit your changes

  2. Git workflow

  • name of branch:
git checkout dev
git pull (resolve conflicts if need)
	
git checkout -b <your-branch-name>
git status
git add . / git add "<name-of-file>"
git commit -m "<your-commit>"
git push -u origin <your-branch-name>  // -u or --set-upstream
	
git checkout dev
git pull (resolve conflicts if need)
git merge <your-branch> dev
git branch -d <your-branch>
	
git push
  1. How to enable sa user in MSSql

https://www.youtube.com/watch?v=Ckb-YoHsuOE

  1. How to map stored procedure in EF

https://stackoverflow.com/questions/43821023/stored-procedure-in-entity-framework-database-first-approach

About

Human resource management system

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages