我想在ASP.NET Core WebApi项目中使用n层架构。我在DAL层(类库项目)中定义了一些带接口的存储库。然后我试图通过这种方式使用IServiceCollection来注入它:
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddMvc();
services.AddScoped<IUsersRepository, UsersRepository>();
}
但这无法解决。我在这里做错了什么?
答案 0 :(得分:1)
1_为OA.DataLayer的名称创建一个Class Library
在Nuget中下载Microsoft.EntityFrameworkCore.SqlServer
在DataLayer例如Tbl_Student
中创建模型
创建一个class
以命名DataContext并将此代码复制到您的类中
public class DataContext:DbContext
{
public DataContext(DbContextOptions<DataContext> options):base(options)
{
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
}
public virtual DbSet<Tbl_Student> Tbl_Students { get; set; }
}
2_创建一个Class Libray
到OA.Services的名称
创建一个interface
到IRepository的名称并添加此代码
public interface IRepository<T> where T : class
{
Task<T> GetByIdAsync(int id);
IQueryable<T> GetAll();
void Remove(T entity);
void Add(T entity);
void Update(T entity);
Task<int> SaveChangeAsync();
}
3_创建一个Class Libray
到OA.Rep的名字
在Nuget中下载Microsoft.EntityFrameworkCore.SqlServer
创建一个class
到存储库名称复制此代码
public class Repository<T> : IRepository<T> where T : class
{
DataContext context;
DbSet<T> db;
public Repository(DataContext context)
{
this.context = context;
db = context.Set<T>();
}
public void Add(T entity)
{
db.Add(entity);
}
public IQueryable<T> GetAll()
{
return db;
}
public async Task<T> GetByIdAsync(int id)
{
return await Task<T>.Run(() =>
{
return db.FindAsync(1);
});
}
public void Remove(T entity)
{
db.Remove(entity);
}
public async Task<int> SaveChangeAsync()
{
return await Task<T>.Run(() =>
{
return context.SaveChangesAsync();
});
}
public void Update(T entity)
{
context.Entry<T>(entity).State = EntityState.Modified;
}
}
4_以OA.Business的名称创建一个Class Libray
创建一个class
来命名学生并复制此代码
public class Student:Repository<Tbl_Student>
{
DataContext context;
public Student(DataContext context):base(context)
{
this.context = context;
}
}
5_转到您的项目中,添加appsetting.json
并复制此代码
{
"ConnectionStrings": {
"DefaultConnection": "Data Source=.;Initial Catalog=dh;Integrated Security=True;"
}
}
将此代码添加到startup
IConfiguration configuration;
向您的创业公司将此代码添加到方法ConfigureServices
services.AddDbContext<DataContext>(options => options.UseSqlServer(configuration.GetConnectionString("DefaultConnection")));
向您的Controller
添加此代码
DataContext context;
Student student;
向您的constructor
添加此代码
public HomeController(DataContext context)
{
this.context = context;
student = new Student(context);
}
致您的Action
编写此代码
public async Task<IActionResult> Index()
{
var q = await student.GetByIdAsync(1);
return View();
}
答案 1 :(得分:0)
配置Startup.cs:
public void ConfigureServices(IServiceCollection services) {
...
services.AddSingleton<ISessionFactory>(c => {
var config = new Configuration();
...
return config.BuildSessionFactory();
});
...
services.AddSingleton<RoleServico>();
...
}
然后,在API控制器中使用这样的方法:
[Route("api/role")]
public class RoleController : Controller {
private readonly ISessionFactory SessionFactory;
private readonly RoleServico RoleServico;
public RoleController(ISessionFactory sessionFactory, RoleServico roleServico) {
if (sessionFactory == null)
throw new ArgumentNullException("sessionFactory");
SessionFactory = sessionFactory;
this.RoleServico = roleServico;
}
[HttpGet]
public IList<RoleModel> Get() {
IList<RoleModel> model = new List<RoleModel>();
using (var session = SessionFactory.OpenSession())
using (var transaction = session.BeginTransaction()) {
return RoleServico.SelecionarRoles(session);
}
}
}
您的Startup.cs似乎没问题,但我不知道您如何使用您的注入课程,或者,如果您收到错误消息。
&#34; RoleServico&#34;是类库项目中的类(就像您的情况一样)。在我的情况下,我使用&#34; Singleton&#34;,但它与#34; Scoped&#34;的配置相同。
*我无法评论您的问题并要求提供更多信息(我还没有50个声誉)。