Click or drag to resize

DataStandard Class

Data basic fields and inherited class DbContext and used inerface IDataStandard
Inheritance Hierarchy
SystemObject
  DbContext
    SOWIDataDataStandard
      More...

Namespace:  SOWIData
Assembly:  SOWIData (in SOWIData.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax
public abstract class DataStandard : DbContext, 
	IDataStandard

The DataStandard type exposes the following members.

Constructors
  NameDescription
Public methodDataStandard
Standard fields
Top
Properties
  NameDescription
Public propertyActionDB
Value of Actions enumeration (value without database saved is saved in ActionText)
Public propertyActionText
Action text of Actions enumeration (value database saved)
Public propertyArchive
Is value false then active record Is value true then archived record
Public propertyChangeTracker
Provides access to features of the context that deal with change tracking of entities.
(Inherited from DbContext.)
Public propertyChecked
Use for user interface handling by checkbox (true or false)
Public propertyClientID
Record on this client
Public propertyColorUI
Color handling for user interface e. g. row table
Public propertyConfiguration
Provides access to configuration options for the context.
(Inherited from DbContext.)
Public propertyCreateDate
Date created data record is set by method Insert
Public propertyCreateUser
User who created data record is set by method Insert
Public propertyDatabase
Creates a Database instance for this context that allows for creation/deletion/existence checks for the underlying database.
(Inherited from DbContext.)
Public propertyDateTimeValue
Use for application
Public propertyDeleteDate
Date as deleted data record is set by method Delete
Public propertyDeleteUser
User who deleted data record is set by method Delete
Public propertyDescription
Use for application
Public propertyFlag
Use for application
Public propertyGUID
GUID for export import
Public propertyHelp
no function
Public propertyID
Unique identifier of record
Public propertyItem
Index handling example this[FieldName]
Public propertyLabel
Use for application
Public propertyLastEditDate
Date last change is set by method Update
Public propertyLastEditUser
User who made last change on data record is set by method Update.
Public propertyLastUser
Gives user name who last work with this data item (create or edit)
Public propertyName
Optional whether required. Setting at class constructor SOWIData.Database.Connector
Public propertyNameOriginalValue
Orginal value of field Name
Public propertySelection
Use for user interface handling selection (options) Integer value example selection by ID
Public propertyStatus
Value of Statuses enumeration (without database saved is saved in StatusText)
Public propertyStatusText
Status text of Statuses enumeration (database saved)
Public propertyTask
Value of Tasks enumeration (without database saved is saved in TaskText)
Public propertyTaskText
Task text of Tasks enumeration (database saved)
Public propertyText
Use for application
Public propertyValue
Use for application
Top
Methods
  NameDescription
Public methodDispose
Calls the protected Dispose method.
(Inherited from DbContext.)
Protected methodDispose(Boolean)
Disposes the context. The underlying ObjectContext is also disposed if it was created is by this context or ownership was passed to this context when this context was created. The connection to the database (DbConnection object) is also disposed if it was created is by this context or ownership was passed to this context when this context was created.
(Inherited from DbContext.)
Public methodEntry(Object)
Gets a DbEntityEntry object for the given entity providing access to information about the entity and the ability to perform actions on the entity.
(Inherited from DbContext.)
Public methodEntry``1(UMP)
Gets a DbEntityEntry object for the given entity providing access to information about the entity and the ability to perform actions on the entity.
(Inherited from DbContext.)
Public methodEquals (Inherited from DbContext.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode (Inherited from DbContext.)
Public methodGetType (Inherited from DbContext.)
Public methodGetValidationErrors
Validates tracked entities and returns a Collection of DbEntityValidationResult containing validation results.
(Inherited from DbContext.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnModelCreating
This method is called when the model for a derived context has been initialized, but before the model has been locked down and used to initialize the context. The default implementation of this method does nothing, but it can be overridden in a derived class such that the model can be further configured before it is locked down.
(Inherited from DbContext.)
Public methodSaveChanges
Saves all changes made in this context to the underlying database.
(Inherited from DbContext.)
Public methodSet(Type)
Returns a non-generic DbSet instance for access to entities of the given type in the context, the ObjectStateManager, and the underlying store.
(Inherited from DbContext.)
Public methodSet``1
Returns a DbSet instance for access to entities of the given type in the context, the ObjectStateManager, and the underlying store.
(Inherited from DbContext.)
Protected methodShouldValidateEntity
Extension point allowing the user to override the default behavior of validating only added and modified entities.
(Inherited from DbContext.)
Public methodToString (Inherited from DbContext.)
Protected methodValidateEntity
Extension point allowing the user to customize validation of an entity or filter out validation results. Called by GetValidationErrors.
(Inherited from DbContext.)
Top
Extension Methods
  NameDescription
Public Extension MethodGetObjectToBytes
Convert an object to byte array
(Defined by Extensions.)
Public Extension MethodIsNumber
Check is value a number
(Defined by Convert.)
Public Extension MethodToHTMLDisplay(DataGrid, TempDataDictionary)Overloaded. (Defined by Extensions.)
Public Extension MethodCode exampleToHTMLDisplay(String, DataGridDataTypes, String, String, String, String, TempDataDictionary)Overloaded.
Gives HTML code for display.
(Defined by Extensions.)
Public Extension MethodToHTMLEditor(DataGrid, TempDataDictionary, String)Overloaded. (Defined by Extensions.)
Public Extension MethodToHTMLEditor(String, DataGridDataTypes, String, String, String, TempDataDictionary, Boolean, String, DataPlacements, String, String)Overloaded.
Gives HTML code for Input field
(Defined by Extensions.)
Public Extension MethodCode exampleToHTMLHidden(String)Overloaded.
Gives HTML code for hidden data
(Defined by Extensions.)
Public Extension MethodToHTMLHidden(DataGrid)Overloaded.
Gives HTML code for hidden data
(Defined by Extensions.)
Public Extension MethodXMLWrite
Gives XML string from data item
(Defined by Helper.)
Top
Explicit Interface Implementations
  NameDescription
Explicit interface implementationPrivate propertySystem#Data#Entity#Infrastructure#IObjectContextAdapter#ObjectContext
Returns the Entity Framework ObjectContext that is underlying this context.
(Inherited from DbContext.)
Top
Examples
Simple implementation
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

namespace SOWIData.App
{
    [Table("Activity")]
    public class Activity : SOWIData.DataStandard
    {
        #region --- Constructor ---
        public Activity() : base() { }
        #endregion

        #region --- Relations ---
        //public virtual ICollection<SOWIData.App.Report> Report { get; set; }
        #endregion

        #region --- Fields ---
        //* Standard fields see SOWIData.DataStandard *

        #endregion

    }
}
This template comment documentation the standard fields used to in a table. Placed in comment section Remarks.
<h3>Table fields</h3>
Note: include declaring standard fields
<list type="table">
<listheader><term>Field</term><description>Description</description></listheader>
<item><term>ClientID</term><description>Foreign key</description></item>
<item><term>Name</term><description>-</description></item>
<item><term>Label</term><description>-</description></item>
<item><term>Description</term><description>-</description></item>
<item><term>DateTimeValue</term><description>-</description></item>
<item><term>Value</term><description>-</description></item>
<item><term>Text</term><description>-</description></item>
<item><term>Flag</term><description>-</description></item>
</list>
This example implementation a enumeration field
#region --- Task ---

/// <summary>
/// Task text of Tasks enumeration (database saved)
/// </summary>
[DefaultValue("None")]
[Column("TaskText")]
public String TaskText
{
    get { return Task.ToString(); }
    set
    {
        if (value == "")
        {
            Task = Tasks.None;
        }
        else
        {
            Task = SOWIData.Helper.Enumeration.Parse<Tasks>(value);
        }
    }
}

/// <summary>
/// Value of Tasks enumeration (without database saved is saved in TaskText)
/// </summary>
[DefaultValue(Tasks.None)]
[NotMapped]
public SOWIData.Tasks Task { get; set; }

#endregion
See Also
Inheritance Hierarchy
SystemObject
  DbContext
    SOWIDataDataStandard
      SOWIData.ManagementAddress
      SOWIData.ManagementAppOption
      SOWIData.ManagementClient
      SOWIData.ManagementClientModule
      SOWIData.ManagementClientOption
      SOWIData.ManagementDataGrid
      SOWIData.ManagementDictionaryUI
      SOWIData.ManagementLanguageUI
      SOWIData.ManagementListViewConfig
      SOWIData.Management.ModelsUserCreateSimple
      SOWIData.ManagementModule
      SOWIData.ManagementPermission
      SOWIData.ManagementRole
      SOWIData.ManagementRoleGroup
      SOWIData.ManagementSession
      SOWIData.ManagementSetup
      SOWIData.ManagementUser
      SOWIData.ManagementUserRole