Ejemplo n.º 1
0
        /// <summary>
        /// Copies the column values into the given DbParameterValues using the database column name
        /// with a prefixed @ as the key. The key must already exist in the DbParameterValues
        /// for the value to be copied over. If any of the keys in the DbParameterValues do not
        /// match one of the column names, or if there is no field for a key, then it will be
        /// ignored. Because of this, it is important to be careful when using this method
        /// since columns or keys can be skipped without any indication.
        /// </summary>
        /// <param name="source">The object to copy the values from.</param>
        /// <param name="paramValues">The DbParameterValues to copy the values into.</param>
        public static void TryCopyValues(this IAllianceAttackableTable source, DbParameterValues paramValues)
        {
            for (var i = 0; i < paramValues.Count; i++)
            {
                switch (paramValues.GetParameterName(i))
                {
                case "alliance_id":
                    paramValues[i] = (Byte)source.AllianceID;
                    break;

                case "attackable_id":
                    paramValues[i] = (Byte)source.AttackableID;
                    break;
                }
            }
        }
 /// <summary>
 /// Checks if this <see cref="IAllianceAttackableTable"/> contains the same values as another <see cref="IAllianceAttackableTable"/>.
 /// </summary>
 /// <param name="source">The source <see cref="IAllianceAttackableTable"/>.</param>
 /// <param name="otherItem">The <see cref="IAllianceAttackableTable"/> to compare the values to.</param>
 /// <returns>
 /// True if this <see cref="IAllianceAttackableTable"/> contains the same values as the <paramref name="otherItem"/>; otherwise false.
 /// </returns>
 public static Boolean HasSameValues(this IAllianceAttackableTable source, IAllianceAttackableTable otherItem)
 {
     return Equals(source.AllianceID, otherItem.AllianceID) && Equals(source.AttackableID, otherItem.AttackableID);
 }
Ejemplo n.º 3
0
/// <summary>
/// Copies the values from the given <paramref name="source"/> into this AllianceAttackableTable.
/// </summary>
/// <param name="source">The IAllianceAttackableTable to copy the values from.</param>
public void CopyValuesFrom(IAllianceAttackableTable source)
{
this.AllianceID = (DemoGame.AllianceID)source.AllianceID;
this.AttackableID = (DemoGame.AllianceID)source.AttackableID;
}
Ejemplo n.º 4
0
/// <summary>
/// Copies the column values into the given Dictionary using the database column name
/// with a prefixed @ as the key. The keys must already exist in the Dictionary;
/// this method will not create them if they are missing.
/// </summary>
/// <param name="source">The object to copy the values from.</param>
/// <param name="dic">The Dictionary to copy the values into.</param>
public static void CopyValues(IAllianceAttackableTable source, System.Collections.Generic.IDictionary<System.String,System.Object> dic)
{
dic["alliance_id"] = (DemoGame.AllianceID)source.AllianceID;
dic["attackable_id"] = (DemoGame.AllianceID)source.AttackableID;
}
Ejemplo n.º 5
0
/// <summary>
/// Initializes a new instance of the <see cref="AllianceAttackableTable"/> class.
/// </summary>
/// <param name="source">IAllianceAttackableTable to copy the initial values from.</param>
public AllianceAttackableTable(IAllianceAttackableTable source)
{
CopyValuesFrom(source);
}
Ejemplo n.º 6
0
 /// <summary>
 /// Copies the values from the given <paramref name="source"/> into this AllianceAttackableTable.
 /// </summary>
 /// <param name="source">The IAllianceAttackableTable to copy the values from.</param>
 public void CopyValuesFrom(IAllianceAttackableTable source)
 {
     AllianceID = source.AllianceID;
     AttackableID = source.AttackableID;
 }
Ejemplo n.º 7
0
 /// <summary>
 /// Copies the column values into the given Dictionary using the database column name
 /// with a prefixed @ as the key. The keys must already exist in the Dictionary;
 /// this method will not create them if they are missing.
 /// </summary>
 /// <param name="source">The object to copy the values from.</param>
 /// <param name="dic">The Dictionary to copy the values into.</param>
 public static void CopyValues(IAllianceAttackableTable source, IDictionary<String, Object> dic)
 {
     dic["alliance_id"] = source.AllianceID;
     dic["attackable_id"] = source.AttackableID;
 }
/// <summary>
/// Copies the values from the given <paramref name="source"/> into this AllianceAttackableTable.
/// </summary>
/// <param name="source">The IAllianceAttackableTable to copy the values from.</param>
        public void CopyValuesFrom(IAllianceAttackableTable source)
        {
            this.AllianceID   = (DemoGame.AllianceID)source.AllianceID;
            this.AttackableID = (DemoGame.AllianceID)source.AttackableID;
        }
/// <summary>
/// Copies the column values into the given Dictionary using the database column name
/// with a prefixed @ as the key. The keys must already exist in the Dictionary;
/// this method will not create them if they are missing.
/// </summary>
/// <param name="source">The object to copy the values from.</param>
/// <param name="dic">The Dictionary to copy the values into.</param>
        public static void CopyValues(IAllianceAttackableTable source, System.Collections.Generic.IDictionary <System.String, System.Object> dic)
        {
            dic["alliance_id"]   = (DemoGame.AllianceID)source.AllianceID;
            dic["attackable_id"] = (DemoGame.AllianceID)source.AttackableID;
        }
/// <summary>
/// Initializes a new instance of the <see cref="AllianceAttackableTable"/> class.
/// </summary>
/// <param name="source">IAllianceAttackableTable to copy the initial values from.</param>
        public AllianceAttackableTable(IAllianceAttackableTable source)
        {
            CopyValuesFrom(source);
        }
Ejemplo n.º 11
0
 /// <summary>
 /// Checks if this <see cref="IAllianceAttackableTable"/> contains the same values as another <see cref="IAllianceAttackableTable"/>.
 /// </summary>
 /// <param name="source">The source <see cref="IAllianceAttackableTable"/>.</param>
 /// <param name="otherItem">The <see cref="IAllianceAttackableTable"/> to compare the values to.</param>
 /// <returns>
 /// True if this <see cref="IAllianceAttackableTable"/> contains the same values as the <paramref name="otherItem"/>; otherwise false.
 /// </returns>
 public static Boolean HasSameValues(this IAllianceAttackableTable source, IAllianceAttackableTable otherItem)
 {
     return(Equals(source.AllianceID, otherItem.AllianceID) && Equals(source.AttackableID, otherItem.AttackableID));
 }
Ejemplo n.º 12
0
 /// <summary>
 /// Copies the column values into the given DbParameterValues using the database column name
 /// with a prefixed @ as the key. The keys must already exist in the DbParameterValues;
 ///  this method will not create them if they are missing.
 /// </summary>
 /// <param name="source">The object to copy the values from.</param>
 /// <param name="paramValues">The DbParameterValues to copy the values into.</param>
 public static void CopyValues(this IAllianceAttackableTable source, DbParameterValues paramValues)
 {
     paramValues["alliance_id"]   = (Byte)source.AllianceID;
     paramValues["attackable_id"] = (Byte)source.AttackableID;
 }
 /// <summary>
 /// Copies the values from the given <paramref name="source"/> into this AllianceAttackableTable.
 /// </summary>
 /// <param name="source">The IAllianceAttackableTable to copy the values from.</param>
 public void CopyValuesFrom(IAllianceAttackableTable source)
 {
     AllianceID   = source.AllianceID;
     AttackableID = source.AttackableID;
 }
 /// <summary>
 /// Copies the column values into the given Dictionary using the database column name
 /// with a prefixed @ as the key. The keys must already exist in the Dictionary;
 /// this method will not create them if they are missing.
 /// </summary>
 /// <param name="source">The object to copy the values from.</param>
 /// <param name="dic">The Dictionary to copy the values into.</param>
 public static void CopyValues(IAllianceAttackableTable source, IDictionary <String, Object> dic)
 {
     dic["alliance_id"]   = source.AllianceID;
     dic["attackable_id"] = source.AttackableID;
 }