private bool FilterKPOs(KPOs entity)
 {
     return (entity.ma_vien_canh == this.ma_vien_canh);
 }
 private void DetachKPOs(KPOs entity)
 {
     entity.vien_canh = null;
 }
 private void AttachKPOs(KPOs entity)
 {
     entity.vien_canh = this;
 }
 private bool FilterKPOs(KPOs entity)
 {
     return (entity.id == this.id_kpos);
 }
示例#5
0
 /// <summary>
 /// Create a new KPOs object.
 /// </summary>
 /// <param name="id">Initial value of the id property.</param>
 public static KPOs CreateKPOs(global::System.Int32 id)
 {
     KPOs kPOs = new KPOs();
     kPOs.id = id;
     return kPOs;
 }
示例#6
0
 /// <summary>
 /// Deprecated Method for adding a new object to the KPOs EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToKPOs(KPOs kPOs)
 {
     base.AddObject("KPOs", kPOs);
 }