Exception object from the request

Attribute DisableInsertPropertyAttribute allows you to exclude the class property of the Insert queries generated by service data. It is recommended to use if there is a default value defined in database which should be used when creating object, or if the database itself when you insert correctly initialisere this value (different IDs).

private int fId = 100;
[DisableInsertPropery(true))
public virtual int Id
{
	get
	{
		int result = this.fId;
		return result;
	}
	set
	{
		this.fId = value;
	}
}