问题描述
好的 - 我已经阅读并且我已经玩过了,我一直空白,主题几乎到达那里但是没有
我的两个我的VB2010学习项目中的课程是:项目和目标
两者都存储在相关数据表中,其中每个目标都有一个Project_ID(一对一)许多关系)
我想将Objectives集合作为Projects类的属性。我想我会使用myProject.PopulateObjectives方法填充
OK - I've read and I've played around and I keep coming up blank with topics that almost get there but don't
Two of my classes in my VB2010 learning project are: "Project" and "Objective"
Both are stored in related data tables where each Objective has a Project_ID (a one-to-many relationship)
I want to incorporate an "Objectives" collection as a Property of the Projects class. I'm thinking I would populate that with a myProject.PopulateObjectives method calling
Select* from Objectives WHERE Project_ID=[@Project_ID]
和这将允许我随后对该项目(和其他项目)进行大量计算和迭代
如何为此声明属性和方法?
感谢所有帮助
and that would allow me then to do a number of calculations and iterations with that project (and other projects)
How do I declare the Property and Methods for this?
All help gratefully received
推荐答案
这篇关于声明并将集合用作属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!