Interface IBloggingDbContext
Inherited Members
Volo.Abp.EntityFrameworkCore.IEfCoreDbContext.AddRange(IEnumerable<>)
Volo.Abp.EntityFrameworkCore.IEfCoreDbContext.AddRangeAsync(IEnumerable<>, CancellationToken)
Volo.Abp.EntityFrameworkCore.IEfCoreDbContext.AttachRange(IEnumerable<>)
Volo.Abp.EntityFrameworkCore.IEfCoreDbContext.RemoveRange(IEnumerable<>)
Volo.Abp.EntityFrameworkCore.IEfCoreDbContext.UpdateRange(IEnumerable<>)
Assembly: Volo.Blogging.EntityFrameworkCore.dll
Syntax
public interface IBloggingDbContext : IEfCoreDbContext, IDisposable, IInfrastructure<IServiceProvider>, IDbContextDependencies, IDbSetCache, IDbContextPoolable
Properties
Blogs
Declaration
DbSet<Blog> Blogs { get; set; }
Property Value
Type |
Description |
DbSet<Blog> |
|
Declaration
DbSet<Comment> Comments { get; set; }
Property Value
Posts
Declaration
DbSet<Post> Posts { get; set; }
Property Value
Type |
Description |
DbSet<Post> |
|
PostTags
Declaration
DbSet<PostTag> PostTags { get; set; }
Property Value
Tags
Declaration
DbSet<Tag> Tags { get; set; }
Property Value
Type |
Description |
DbSet<Tag> |
|
Users
Declaration
DbSet<BlogUser> Users { get; }
Property Value
Extension Methods