Advanced Search
Search Results
2 total results found
EF - Backend vs .NET Datatypes
.NET
Here's a list of what datatypes that Entity Framework uses to store .NET datatypes in a couple different database engines. .NET Datatype SQL Server PostgreSQL SQLite Comments bool bit boolean INTEGER byte tinyint smallint (Postgr...
EF: Data Contexts - DbContexts
.NET
When working in EF, you will come across the need to create a DbContext type. MS has a base class that you inherit from, called: DbContext. It is useful to implement either a two or three layer DbContext. Two Layer DbContext The two layers in this organiza...