PersistedState (attribute): Difference between revisions

From MXMS Wiki
Jump to navigationJump to search
No edit summary
Line 1: Line 1:
== Introduction ==
== Introduction ==
PersistedState is an [[https://en.wikipedia.org/wiki/Attribute_(programming) Attribute]] which main purpose is to make a property persistent in the database. When applied to a property a column is created which holds the state of the property
PersistedState is an [[Attribute]] which main purpose is to make a property persistent in the database. When applied to a property a column is created which holds the state of the property


== Example ==
== Example ==

Revision as of 16:15, 16 March 2026

Introduction

PersistedState is an Attribute which main purpose is to make a property persistent in the database. When applied to a property a column is created which holds the state of the property

Example

[PersistedState]
public virtual string Name
{
  get;
  set;
}