Employee
EmployeeID : int : Primary key
name : string
Job
JobID : int : Primary key
name : string
EmployeeID : int
在数据库(sql Server)中,我有两个表来保存这些类中的数据(Employee& Job)
(ID字段是自动增量字段,因此在两个表中都可以具有相同的no)
现在我需要实现一个新功能,以便用户为Employees或Jobs添加注释,因此我需要创建一个由两个类共享的Comment类.
什么是最好的Class&表结构实现此新功能.
解决方法 我建议使用数据库设计,以便将来添加更多注释类型,而无需修改数据库.表评论
ID (int,Primary Key)CommenteeID (int,not null)CommentTypeID (int,not null)Text (nvarchar(255))
表CommentType
ID (int,Primary Key)name (nvarchar(50),not null)
CommenteeID将引用您将来需要评论的工作或员工或任何其他表格.
CommentTypeID将引用CommentType,您可以根据需要添加类型.
至于你的课程设计,它可能如下所示:
public class Job{ public List<Comment> Comments; public string name { get; set; }}public class Employee{ public List<Comment> Comments; public string name { get; set; }}
……作为一个基本想法.如何以及何时将您的注释作为Employee或Job的一部分加载取决于您访问数据库的方法.
总结以上是内存溢出为你收集整理的向现有类添加新功能(C#)全部内容,希望文章能够帮你解决向现有类添加新功能(C#)所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)