Show / Hide Table of Contents

Class Demographic

Inheritance
System.Object
ModelEntity<TObject><Demographic>
Demographic
Inherited Members
ModelEntity<TObject>.Get(Int32)
ModelEntity<TObject>.Get(Expression<Func<TObject, Boolean>>, Expression<Func<TObject, Object>>[])
ModelEntity<TObject>.GetAsync(Int32)
ModelEntity<TObject>.GetAll()
ModelEntity<TObject>.GetAllAsync()
ModelEntity<TObject>.Find(Expression<Func<TObject, Boolean>>)
ModelEntity<TObject>.FindAsync(Expression<Func<TObject, Boolean>>)
ModelEntity<TObject>.FindAll(Expression<Func<TObject, Boolean>>)
ModelEntity<TObject>.FindAllAsync(Expression<Func<TObject, Boolean>>)
ModelEntity<TObject>.Save(TObject)
ModelEntity<TObject>.SaveAsync(TObject)
ModelEntity<TObject>.SavedAll(IEnumerable<TObject>)
ModelEntity<TObject>.SaveAllAsync(IEnumerable<TObject>)
ModelEntity<TObject>.Delete(TObject)
ModelEntity<TObject>.DeleteAsync(TObject)
ModelEntity<TObject>.Count()
ModelEntity<TObject>.CountAsync()
ModelEntity<TObject>.Save()
ModelEntity<TObject>.Dispose()
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace:UM4RS.User.Demographics
Assembly:UM4RS.dll
Syntax
[Table("Demographic")]
public class Demographic : ModelEntity<Demographic>, IDisposable, IBaseEntity

Constructors

Demographic()

Declaration
public Demographic()

Properties

Age

Declaration
[Exportable(Order = 2, GlobalOrder = 1, Name = "Age")]
public int Age { get; }
Property Value
Type Description
System.Int32

Birthday

Declaration
[NonExportable]
public DateTime? Birthday { get; set; }
Property Value
Type Description
System.Nullable<T><System.DateTime>

Employment

Declaration
[NonExportable]
public string Employment { get; set; }
Property Value
Type Description
System.String

Gender

Declaration
[Exportable(Order = 1, GlobalOrder = 1, Name = "sex")]
public Gender? Gender { get; set; }
Property Value
Type Description
System.Nullable<T><Gender>

Id

Declaration
[NonExportable]
public int Id { get; }
Property Value
Type Description
System.Int32
Implements
IBaseEntity.Id

RelationshipStatus

Declaration
[NonExportable]
public RelationshipStatus? RelationshipStatus { get; set; }
Property Value
Type Description
System.Nullable<T><RelationshipStatus>

Salary

Declaration
[NonExportable]
public double ? Salary { get; set; }
Property Value
Type Description
System.Nullable<T><System.Double>

SpokenLanguages

Declaration
[NonExportable]
public List<SpokenLanguage> SpokenLanguages { get; set; }
Property Value
Type Description
System.Collections.Generic.List<T><SpokenLanguage>

Wealth

Declaration
[NonExportable]
public double ? Wealth { get; set; }
Property Value
Type Description
System.Nullable<T><System.Double>
Back to top Copyright © 2015-2016 Microsoft
Generated by DocFX