Inheritance: System.Data.Objects.DataClasses.EntityObject
 /// <summary>
 /// Deprecated Method for adding a new object to the film_actor EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddTofilm_actor(film_actor film_actor)
 {
     base.AddObject("film_actor", film_actor);
 }
 /// <summary>
 /// Create a new film_actor object.
 /// </summary>
 /// <param name="actor_id">Initial value of the actor_id property.</param>
 /// <param name="film_id">Initial value of the film_id property.</param>
 /// <param name="last_update">Initial value of the last_update property.</param>
 public static film_actor Createfilm_actor(global::System.Int32 actor_id, global::System.Int32 film_id, global::System.DateTime last_update)
 {
     film_actor film_actor = new film_actor();
     film_actor.actor_id = actor_id;
     film_actor.film_id = film_id;
     film_actor.last_update = last_update;
     return film_actor;
 }