I am working on e-tier architecture within MVC framework (ASP.NET MVC5, Entity Framework 6). My application is divided into three sub-projects which are Business-Layer, Data-Acc
Your question is more about design/architecture which does not have a 'one-size-fits-all' solution. I can at most share some suggetions and what will I usually do in a fairly typical ASP.NET MVC + Entity Framework stack:
BLL.User
class obeys the Single Responsibility PrincipleYour BLL.User
class should not concern itself with how to retrieve DAL.User
from the database through Entity Framework/Unit of Work. You should simply have another class/layer that will be responsible for that:
public interface IUserRepository
{
IEnumerable<User> GetAllUsers();
}
Then another class to implement IUserRepository
:
public class UserRepository : IUserRepository
{
private readonly UserManagement_UnitOfWork _unitOfWork;
public UserRepository(UserManagement_UnitOfWork unitOfWork)
{
_unitOfWork = unitOfWork;
}
public IEnumerable<User> GetAllUsers()
{
return from u in _unitOfWork.User_Repository.GetAll()
select u;
}
}
Doing so removes the dependency from your BLL.User
to the UserManagment_UnitOfWork
class and facilitates testing/mocking (i.e. unit tests can be written to mock an in-memory IUserRepository
)
Then from your controller, whenever there is a need to retrieve BLL.Users
, you simply inject an instance of IUserRepository
to the controller's constructor:
public class UserController
{
private readonly IUserRepository _userRepository;
public UserController(IUserRepository userRepository)
{
_userRepository = userRepository;
}
public ActionResult Index()
{
// Simple example using IEnumerable<BLL.User> as the view model
return View(_userRepository.GetAllUsers().ToList());
}
}
DAL.User
to BLL.User
It's actually quite similar to point number 1, you can simply have another interface/class pair:
public interface IUserMapper
{
BLL.User MapUser(DAL.User);
}
public class UserMapper : IUserMapper
{
public BLL.User MapUser(DAL.User user)
{
return new BLL.User
{
FirstName = user.FirstName,
LastName = user.LastName,
Age = user.Age
// etc...
};
}
}
Or, if you think writing mapping code is tedious, consider using AutoMapper so that your code becomes Mapper.Map<DAL.User, BLL.User>(user)
private
fields in BLL.User
and convert them to auto-propertiesValidationAttribute
to aid validation in your ASP.NET MVC applicationpublic class User
{
public string UserId { get; set; }
[Required]
public string FirstName { get; set; }
public string LastName { get; set; }
[Range(0, int.MaxValue)]
public int Age { get; set; }
[EmailAddress]
public string EmailAddress { get; set; }
}
Firs of all there is no need for both Repository Layer and Data Access Layer. Those 2 layers have the same purpose - to add a layer of abstraction for working with your persistent storage. Although they have different concepts
GetAll
method and etc. This is a very simplified description but there are enough resources about this pattern for example.GetUserByName
, GetUserById
, RemoveUser
, GetAllActiveUsers
and etc.Also Unit of Work doesn't have to be implemented in Repository/DAL. Since a single unit of work can contain modification of multiple entities or requests to external services. In my opinion BLL would be a more suitable place for UoW since in most of the cases you can look at a single business action (a method in BL) as a UoW
Now when this is a little clearer (hopefully). Your Repository/DAL should return only Business entities and not a data base generated classes (in case that they are different) and all the mapping logic should be encapsulated inside the Repository/DAL Layers. For example GetUserById
method should return a BLL - User Class
and not a User Class generated by EF in this case which can be internal class to the Repository/DAL layer.
For handling mappings between those classes you can use different libraries such as ValueInjecter or AutoMapper which are really great and can make your development much easier.
You can simply do this by using AutoMapper Install it via Nuget:
PM> Install-Package AutoMapper
and then all you have to do is to config AutoMapper to map similar objects for you.
Mapper.CreateMap<DAL.User, BLL.User>();
You can convert objects anywhere like this :
BLL.User bll_User = Mapper.Map<DAL.User, BLL.User>(dal_user);