将两个或多个表合并为一个对象
我需要使用 C# 4,0 将两个或多个表组合成一个对象...我为一个表编写了一个类,其中包括简单的 select selectbyid insert update 和 update...它适用于单个表...通过我有两个属性指定表名列名和主键...通过使用所有这些我可以创建我的简单方法,但我需要在一个对象或方法中选择和更新更多表...我应该做什么或做什么你会建议一下吗... 示例:
用户和客户表我有外键定义...
I need to combine two or more table into one object by using C# 4,0... I wrote a class for a table which included simple select selectbyid insert update and update.... it works fine for single table... by the way I have two attribute which specifies table name column name and primarykey... by using all these I can create my simple methods but I need to select and update more table in one object or method... what should I do or what would you suggest about it...
Example:
users and customer table I have foreign keys which defined...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 linq to sql,则可以连接其他表,就像
复制和复制一样。从 MSDN LINQ to SQL: .NET Language-Integrated Query for 的示例粘贴关系数据
If you`re using linq to sql, you can join the other tables like
as just copy & paste from a sample of MSDN LINQ to SQL: .NET Language-Integrated Query for Relational Data