6

我有以下代码:

using System;
using System.Collections.Generic;
using System.Text;
using ProjectBase.Utils;

namespace EnterpriseSample.Core.Domain
{
    public class Notifikasi : DomainObject<string>, IHasAssignedId<string>
    {
        public string Name { get; set; }
        public string Description { get; set; }
        public DateTime StartDate { get; set; }
        public DateTime EndDate { get; set; }
        public DateTime CreatedDate { get; set; }
        public string CreatedBy { get; set; }
        public DateTime UpdateDate { get; set; }
        public string UpdateBy { get; set; }

        public void SetAssignedIdTo(string assignedId)
        {
            Check.Require(!string.IsNullOrEmpty(assignedId), "assignedId may not be null or empty");

            // As an alternative to Check.Require, which throws an exception, the 
            // Validation Application Block could be used to validate the following
            Check.Require(assignedId.Trim().Length == 5, "assignedId must be exactly 5 characters");

            ID = assignedId.Trim().ToUpper();
        }

        public override int GetHashCode()
        {
            return (GetType().FullName + "|" +
                    ID + "|" +
                    Name).GetHashCode();

        }
    }
}

我在另一个类中使用 Notifikasi 类,但会oNoti.ID = "12";产生错误:

无法在此上下文中使用属性或索引器,因为 set 访问器不可访问。

有人可以帮我解决这个问题吗?(如果相关,我使用 ORM)。

INotifikasiDao dao = DaoFactory.GetNotifikasiDao();

dao.closeSession();
dao.openSession();
EnterpriseSample.Core.Domain.Notifikasi oNoti = new EnterpriseSample.Core.Domain.Notifikasi();
int no = 1;
oNoti.Name = "ETL Account History";
DateTime startDate = DateTime.Today;
DateTime expiryDate = startDate.AddDays(30);
oNoti.StartDate = startDate;
oNoti.EndDate = expiryDate;
oNoti.Description = "ACC_HIST" + startDate + "Failure";
oNoti.ID = "12"; //this is where the error happens

dao.Update(oNoti);
4

2 回答 2

11

您的问题缺少 的重要定义DomainObject,但错误消息表明该属性ID是这样声明的:

public string ID
{
    get;
    protected set;
}

这意味着ID任何人都可以读取 的值,但它只能从内部实例DomainObject和派生类中设置。

使用SetAssignedIdTo也不是一个选项,因为它需要 5 个字符,您要分配的 ID 只有两个字符长。我假设此方法的存在能够手动将 ID 分配给通常具有自动递增键的表中的行。强制此 ID 使用 5 个字符可确保 - 在一定程度上 - 手动分配的键不会与自动创建的键发生冲突。

于 2013-01-22T09:27:29.197 回答
-1

在这样的 if 条件中检查相等性时,我遇到了这个错误:

if (e.ChangeType = ChangeType.Update) { ... }

注意条件中的单个等于(我想我最近做了太多 SQL 哈哈)。出现该错误可能是因为我不情愿地对具有只读访问权限的成员进行分配。添加另一个等号后,一切都很好。

于 2019-03-25T15:27:16.620 回答