Nettiers.AdventureWorks.Entities.EntityUtil.SetPropertyValue C# (CSharp) Method

SetPropertyValue() public static method

Sets the value of the property with the specified name.
public static SetPropertyValue ( Object item, String propertyName, Object propertyValue ) : void
item Object An object instance.
propertyName String The property name.
propertyValue Object The property value.
return void
		public static void SetPropertyValue(Object item, String propertyName, Object propertyValue)
		{
			SetPropertyValue(item, propertyName, propertyValue, true);
		}

Same methods

EntityUtil::SetPropertyValue ( Object item, String propertyName, Object propertyValue, PropertyInfo &property ) : void
EntityUtil::SetPropertyValue ( Object item, String propertyName, Object propertyValue, PropertyInfo &property, bool convertBlankToNull ) : void
EntityUtil::SetPropertyValue ( Object item, String propertyName, Object propertyValue, bool convertBlankToNull ) : void