向现有类添加新功能(C#)

向现有类添加新功能(C#),第1张

概述在c#.net应用程序中,我有两个类,如下所示 Employee EmployeeId : int : Primary key Name : string Job JobId : int : Primary key Name : string EmployeeId : int 在数据库(SQL Server)中,我有两个表来保存这些类中的数据(Employee& Job) (ID字段是自动增量字段 在c#.net应用程序中,我有两个类,如下所示

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#)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1217286.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存