CapRaffle.Domain.Model.CapRaffleContext.AddToUserEvents C# (CSharp) 메소드

AddToUserEvents() 공개 메소드

Deprecated Method for adding a new object to the UserEvents EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead.
public AddToUserEvents ( UserEvent userEvent ) : void
userEvent UserEvent
리턴 void
        public void AddToUserEvents(UserEvent userEvent)
        {
            base.AddObject("UserEvents", userEvent);
        }