https://github.com/data-miner00/entity

Learning about Entity Framework

https://github.com/data-miner00/entity

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (4.0%) to scientific vocabulary

Keywords

dotnet entity-framework tsql
Last synced: 5 months ago · JSON representation

Repository

Learning about Entity Framework

Basic Info
  • Host: GitHub
  • Owner: data-miner00
  • License: bsl-1.0
  • Language: C#
  • Default Branch: master
  • Homepage:
  • Size: 265 KB
Statistics
  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Topics
dotnet entity-framework tsql
Created about 2 years ago · Last pushed 6 months ago
Metadata Files
Readme License

README.md

Entity

Entity Framework research.

Commands

Code-first Approach

Whenever having a new changes to the models, e.g adding of new columns, need to add the migration first. A new folder named Migrations will be created if not already exist. The migration codes will be placed inside the folder.

``` Add-Migration 'migration-name'

or

dotnet ef migrations add 'migration-name' ```

After that, need to synchronize the changes to the actual database.

``` Update-Database

or

dotnet ef database update ```

Undo, remove migration can be performed as well.

Remove-Migration

Database-first Approach

Scaffold-DbContext 'conn-str' Microsoft.EntityFrameworkCore.SqlServer -ContextDir Data -OutDir Models -DataAnnotation

References

Owner

  • Name: Shaun Chong
  • Login: data-miner00
  • Kind: user
  • Location: undefined, Mars
  • Company: Experian

Full Queue Developer

GitHub Events

Total
  • Push event: 3
Last Year
  • Push event: 3

Committers

Last synced: over 1 year ago

All Time
  • Total Commits: 24
  • Total Committers: 1
  • Avg Commits per committer: 24.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 24
  • Committers: 1
  • Avg Commits per committer: 24.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
data-miner00 d****0 24

Issues and Pull Requests

Last synced: 12 months ago

All Time
  • Total issues: 0
  • Total pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Total issue authors: 0
  • Total pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels

Dependencies

Entity.Blazor/Entity.Blazor.csproj nuget
  • Microsoft.EntityFrameworkCore 7.0.14
  • Microsoft.EntityFrameworkCore.SqlServer 7.0.14
Entity.Common/Entity.Common.csproj nuget
Entity.Console/Entity.Console.csproj nuget
  • Microsoft.EntityFrameworkCore.Design 8.0.0 development
  • Microsoft.EntityFrameworkCore.Tools 8.0.0 development
  • Microsoft.EntityFrameworkCore 8.0.0
  • Microsoft.EntityFrameworkCore.SqlServer 8.0.0
Entity.DatabaseFirst.NetFramework/Entity.DatabaseFirst.NetFramework.csproj nuget
Entity.Raw.SqlClient/Entity.Raw.SqlClient.csproj nuget
  • System.Data.SqlClient 4.8.5
Entity.Common.UnitTests/Entity.Common.UnitTests.csproj nuget
  • xunit.runner.visualstudio 3.0.0 development
  • Microsoft.NET.Test.Sdk 17.12.0
  • coverlet.collector 6.0.2
  • xunit 2.9.2