April 2017
Intermediate to advanced
564 pages
24h 7m
English
The data access layer of this service uses the DataContext (DbContext) in the Entity Framework for the underlying SQLite database for storage. Let's view the sample code here:
public class DataContext : DbContext { #region Entities representing Database Objects public DbSet<Employee> EMPLOYEE { get; set; } public DbSet<Photo> PHOTO { get; set; } public DbSet<Document> DOCUMENTS ...Read now
Unlock full access