Castle ActiveRecord - Setter 问题

发布于 2024-11-09 22:34:19 字数 841 浏览 0 评论 0原文

好的,所以我开始了一个新项目并决定使用 ORM 工具(因为我厌倦了手动编写) 所以我开始使用 Castle AR,

所以在我的领域目标中有以下内容

[ActiveRecord]
    public class Account : ActiveRecordBase<Account>
    {
        private string companyName;
        private Guid accountId;

        [PrimaryKey(Access = PropertyAccess.FieldCamelcase)]
        public Guid AccountId
        {

            get { return accountId; }

        }

        [Property(Access = PropertyAccess.FieldCamelcase)]
        public string  CompanyName
        {
            get { return companyName; }
          //   set { companyName= value; }
        }
    }

,这可以工作并提取我的记录。 但如果我取消注释该集,我会得到以下内容 在此处输入图像描述

显然我很快就会需要这套套件 (通常我也会在 CompanyName "Access=PropertyAccess.FieldCamelCase" 上删除它)

有什么想法我做错了吗?

Ok, so im starting a new project and decided to use a ORM tool (as im so bored with writing it manually)
So im starting new with Castle AR,

So in my domain object ive the following

[ActiveRecord]
    public class Account : ActiveRecordBase<Account>
    {
        private string companyName;
        private Guid accountId;

        [PrimaryKey(Access = PropertyAccess.FieldCamelcase)]
        public Guid AccountId
        {

            get { return accountId; }

        }

        [Property(Access = PropertyAccess.FieldCamelcase)]
        public string  CompanyName
        {
            get { return companyName; }
          //   set { companyName= value; }
        }
    }

And this works and pulls out my records.
But if I uncomment the set I get the following
enter image description here

Obviosuly im going to need the set soon
(normally I would also remove this on CompanyName "Access=PropertyAccess.FieldCamelCase")

Any ideas what im doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

<逆流佳人身旁 2024-11-16 22:34:19

您设置 AccountId 代替 accountId,这会创建无限循环。使用下面的修复:

set { accountId = value; }

您也对 CompanyName 犯了同样的错误,所以也修复它。

You're setting AccountId in place of accountId which creates an infinite loop. Use the fix below:

set { accountId = value; }

You're also doing the same mistake with CompanyName also so fix that too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文