Show / Hide Table of Contents

Interface IBloggingDbContext

Inherited Members
IEfCoreDbContext.Attach<TEntity>(TEntity)
IEfCoreDbContext.Attach(Object)
IEfCoreDbContext.SaveChanges()
IEfCoreDbContext.SaveChanges(Boolean)
IEfCoreDbContext.SaveChangesAsync(Boolean, CancellationToken)
IEfCoreDbContext.SaveChangesAsync(CancellationToken)
IEfCoreDbContext.SaveChangesOnDbContextAsync(Boolean, CancellationToken)
IEfCoreDbContext.Set<T>()
IEfCoreDbContext.Database
IEfCoreDbContext.ChangeTracker
IEfCoreDbContext.Add(Object)
IEfCoreDbContext.Add<TEntity>(TEntity)
IEfCoreDbContext.AddAsync(Object, CancellationToken)
IEfCoreDbContext.AddAsync<TEntity>(TEntity, CancellationToken)
Volo.Abp.EntityFrameworkCore.IEfCoreDbContext.AddRange(IEnumerable<>)
IEfCoreDbContext.AddRange(Object[])
IEfCoreDbContext.AddRangeAsync(Object[])
Volo.Abp.EntityFrameworkCore.IEfCoreDbContext.AddRangeAsync(IEnumerable<>, CancellationToken)
Volo.Abp.EntityFrameworkCore.IEfCoreDbContext.AttachRange(IEnumerable<>)
IEfCoreDbContext.AttachRange(Object[])
IEfCoreDbContext.Entry<TEntity>(TEntity)
IEfCoreDbContext.Entry(Object)
IEfCoreDbContext.Find(Type, Object[])
IEfCoreDbContext.Find<TEntity>(Object[])
IEfCoreDbContext.FindAsync(Type, Object[], CancellationToken)
IEfCoreDbContext.FindAsync<TEntity>(Object[], CancellationToken)
IEfCoreDbContext.FindAsync<TEntity>(Object[])
IEfCoreDbContext.FindAsync(Type, Object[])
IEfCoreDbContext.Remove<TEntity>(TEntity)
IEfCoreDbContext.Remove(Object)
Volo.Abp.EntityFrameworkCore.IEfCoreDbContext.RemoveRange(IEnumerable<>)
IEfCoreDbContext.RemoveRange(Object[])
IEfCoreDbContext.Update<TEntity>(TEntity)
IEfCoreDbContext.Update(Object)
IEfCoreDbContext.UpdateRange(Object[])
Volo.Abp.EntityFrameworkCore.IEfCoreDbContext.UpdateRange(IEnumerable<>)
Namespace: Volo.Blogging.EntityFrameworkCore
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>

Comments

Declaration
DbSet<Comment> Comments { get; set; }
Property Value
Type Description
DbSet<Comment>

Posts

Declaration
DbSet<Post> Posts { get; set; }
Property Value
Type Description
DbSet<Post>

PostTags

Declaration
DbSet<PostTag> PostTags { get; set; }
Property Value
Type Description
DbSet<PostTag>

Tags

Declaration
DbSet<Tag> Tags { get; set; }
Property Value
Type Description
DbSet<Tag>

Users

Declaration
DbSet<BlogUser> Users { get; }
Property Value
Type Description
DbSet<BlogUser>

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft