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-Access-Layer, Repository (This include repository and Unit of Work) and ASP.NET MVC web-app. I am struggling to understand mapping between business data and entity framework model. for example if I have model class User in entity framework as
DAL - User Model
[Table("User")]
public class User
{
public User() { }
[Key]
public int UserID { get; set; }
[StringLength(250)]
[Required]
public string FirstName { get; set; }
[StringLength(250)]
[Required]
public string LastName { get; set; }
[Required]
public int Age { get; set; }
[StringLength(250)]
[Required]
public string EmailAddress { get; set; }
public ICollection<UserInGroup> UserInGroup { get; set; }
}
and in business layer I have user class
BLL - User Class
public class User
{
private string userID;
private string firstName;
private string lastName;
private int age;
private string emailAddress;
public string UserID
{
get { return userID; }
set { userID = value; }
}
public string FirstName
{
get { return firstName; }
set { firstName = value; }
}
public string LastName
{
get { return lastName; }
set { lastName = value; }
}
public int Age
{
get { return age; }
set { age = value; }
}
public string EmailAddress
{
get { return emailAddress; }
set { emailAddress = value; }
}
public void GetAllUser()
{
List<App.DAL.Model.User> _user = new List<DAL.Model.User>();
using (var _uow = new UserManagement_UnitOfWork())
{
_user = (from u in _uow.User_Repository.GetAll()
select u).ToList();
}
}
}
How I map together and secondly; referring to method GetAllUser(), I still need to use User model class from DAL in order to get all the users from database, where is my current understanding is; each layer should be independent to each other and I have abstraction layer i.e. repository between data access layer and business layer. I am slightly confused of both concept working together. Am I on right track or missing something. also need practical answer on User business layer.
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 aBLL - 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.
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:
1. Make sure your
BLL.User
class obeys the Single Responsibility PrincipleYour
BLL.User
class should not concern itself with how to retrieveDAL.User
from the database through Entity Framework/Unit of Work. You should simply have another class/layer that will be responsible for that:Then another class to implement
IUserRepository
:Doing so removes the dependency from your
BLL.User
to theUserManagment_UnitOfWork
class and facilitates testing/mocking (i.e. unit tests can be written to mock an in-memoryIUserRepository
)Then from your controller, whenever there is a need to retrieve
BLL.Users
, you simply inject an instance ofIUserRepository
to the controller's constructor:2. How to map
DAL.User
toBLL.User
It's actually quite similar to point number 1, you can simply have another interface/class pair:
Or, if you think writing mapping code is tedious, consider using AutoMapper so that your code becomes
Mapper.Map<DAL.User, BLL.User>(user)
Bonus points
private
fields inBLL.User
and convert them to auto-propertiesValidationAttribute
to aid validation in your ASP.NET MVC applicationYou can simply do this by using AutoMapper Install it via Nuget:
and then all you have to do is to config AutoMapper to map similar objects for you.
You can convert objects anywhere like this :