我可以在RavenDB中使用构造函数重载吗?

时间:2019-11-01 13:30:36

标签: .net-core ravendb

我一直在尝试编写解决问题的智能解决方案,但失败了。我需要在我的域中以自己的身份进行构造函数重载,首先是对一个对象实例进行重载,而对RavenDB进行填充则是重载。这没什么大不了的,对吧?但是RavenDB不能与多个构造函数一起使用,该消息如何显示:

  

Message =“无法找到用于类型的构造函数   Project.Domain.Business.Users.User。一个班级应该有一个   默认构造函数,一个带参数的构造函数或一个构造函数   标有JsonConstructor属性。路径“登录”。”

这个想法是在我的身份中保留一些域规则,这在某人创建对象实例时是必需的。我们如何在以下示例中看到:

我的身份用户:

namespace Project.Domain.Business.Users
{
    public class User
    {
        public string Id { get; private set; }
        public string Login { get; private set; }
        public string Password { get; private set; }
        public string Role { get; private set; }
        public string Token { get; private set; }
        public string RecoveryToken { get; private set; }
        public string GoogleClientId { get; private set; }
        public string GoogleClientSecret { get; private set; }
        public string FacebookAppId { get; private set; }
        public string FacebookAppSecret { get; private set; }
        public Person Person { get; private set; }

        public User(string login, string password, string googleClientId, string googleClientSecret, string facebookAppId, string facebookAppSecret, Person person)
        {
            Id = Guid.NewGuid().ToString();
            Login = login;
            Password = SecurityHolder.EncryptPassword(password);
            Role = "Common";
            Token = SecurityHolder.GetHash_HMACSHA256(login + "_" + password);
            RecoveryToken = SecurityHolder.GetHash_HMACSHA256(login);
            GoogleClientId = googleClientId;
            GoogleClientSecret = googleClientSecret;
            FacebookAppId = facebookAppId;
            FacebookAppSecret = facebookAppSecret;
            Person = person;
        }

    }
}

在我的服务中创建的对象(例如,可能在控制器中创建的对象):

var emailObject = new Email(email);
            var cellPhoneNumberObject = new Phone(cellPhoneNumber);

            var naturalPerson = new NaturalPerson(name, gender, birth, emailObject, cellPhoneNumberObject, description);
            var user = new User(login, password, googleClientId, googleClientSecret, facebookAppId, facebookAppSecret, naturalPerson);

            var userResults = _userValidation.IsValid(user);

            if (userResults.IsValid)
            {
                _userRepository.Create(user);
            }
            else
            {
                throw new Exception(userResults.ToString("~"));
            }

我当时正在考虑使用创新的设计模式来创建我的对象(可能是工厂)的实例,并设置标识属性public。因此,RavenDB也应该正常工作。但是,我不知道这是否正确。

编辑:

Garay问我。创建方法在UserRepository中实现:

public class UserRepository : IUserRepository
{
    private readonly IUnitOfWork _unitOfWork;

    public UserRepository(IUnitOfWork unitOfWork)
    {
        _unitOfWork = unitOfWork;
    }

    public User GetById(string id)
    {
        var session = _unitOfWork.OpenSession();
        return session.Load<User>(id);
    }

    public void Create(User user)
    {
        var session = _unitOfWork.OpenSession();
        session.Store(user);
        session.SaveChanges();
    }

    public void Edit(User user)
    {
        var session = _unitOfWork.OpenSession();
        session.SaveChanges();
    }
}

工作单位模式已用于将乌鸦状态会话保持在范围内。让用户选择并更新我的服务很重要。

unitOfWork代码:

public class UnitOfWork : IUnitOfWork
{
    private readonly IDocumentStore _documentStore;
    private IDocumentSession _documentSession;

    public UnitOfWork(IDocumentStoreHolder documentStoreHolder)
    {
        _documentStore = documentStoreHolder.DocumentStore;
        _documentSession = null;
    }

    public IDocumentSession OpenSession()
    {
        return _documentSession ?? (_documentSession = _documentStore.OpenSession());
    }
}

1 个答案:

答案 0 :(得分:1)

经过一些研究,我找到了解决方案。可以在构造函数中使用标记[Json Constructor]进行RavenDB的序列化。

示例:

    [JsonConstructor]
    public User(string id, string login, string password, string role, string token, string recoveryToken, string googleClientId, string googleClientSecret, string facebookAppId, string facebookAppSecret, Person person)
    {
        Id = id;
        Login = login;
        Password = password;
        Role = role;
        Token = token;
        RecoveryToken = recoveryToken;
        GoogleClientId = googleClientId;
        GoogleClientSecret = googleClientSecret;
        FacebookAppId = facebookAppId;
        FacebookAppSecret = facebookAppSecret;
        Person = person;
    }

因此,它允许使用构造函数重载。

RavenDb文档中了解更多信息。