gpt4 book ai didi

c# - 如果有的话,什么时候属性的名称应该包含类的名称?

转载 作者:太空宇宙 更新时间:2023-11-03 17:08:42 25 4
gpt4 key购买 nike

public class Fruit
{
// choose one
public int Id { get; set; }
public int FruitId get; set; } // redundant or usefully more descriptive?

// choose one
public string Name { get; set; }
public string FruitName { get; set;} // redundant or usefully more descriptive?
public string Fruit { get; set; } // or what about this?
}

对于水果的标识号和名称,您首选哪种约定?为什么?还有其他您会做出不同回答的示例吗?

最佳答案

public class Fruit
{
public int Id { get; set; }
public string Name { get; set; }
}

我知道这些属性是Fruit的属性,为什么还要重复这个名字呢? SomethingId 对我来说是外键属性。

关于c# - 如果有的话,什么时候属性的名称应该包含类的名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1814069/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com