A Collection of Examples of EntityFramework in C# Dotnet
I am Srikanth Tangella and I am an Software Engineer with many years of Experience in Desktop software After so many years of programming, I created a set of reference projects for Entity Framework using C# Dotnet Framework. The purpose is to log my research and provide easy to grab snippets and or base projects for future use
Reusable libraries with useful generic implementations
- Infrastructure : Contains generic foundational code that can be used in any project
- Repository : Entity Framework specific foundational classes that is useful in connecting to EF and making CRUD operations
Sample projects that showcase Entity Framework 6
- CodeFirstExample : A minimalistic example of Code First approach for EF
- CodeFirstWithDatabaseSeeding : Continuing of the CodeFirstExample, but this time seeding the database at the time of creation
- TestingCodeFirst_FirstProject : An example from Microsoft on Code first EF
My custom demo for Entity framework 6 using C# Dotnet Framework console
- ExampleRepository: A library that holds my Model and DataContext classes using Infrastructure and Repository Projects
- DemoForRepository: Program execution code