Show / Hide Table of Contents

    Model Class: Dddw_Department.cs

    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using SnapObjects.Data;
    using DWNet.Data;
    using Newtonsoft.Json;
    
    namespace Appeon.ApiDoc.Models
    {
        [DataWindow("dddw_department", DwStyle.Grid)]
        [Table("Department", Schema = "dbo")]
        #region DwSelectAttribute  
        [DwSelect("PBSELECT( VERSION(400) TABLE(NAME=\"Department\" ) @(_COLUMNS_PLACEHOLDER_) )")]
        #endregion
        [UpdateWhereStrategy(UpdateWhereStrategy.KeyAndConcurrencyCheckColumns)]
        [DwKeyModificationStrategy(UpdateSqlStrategy.DeleteThenInsert)]
        public class Dddw_Department
        {
            [Key]
            [DwColumn("Department", "DepartmentID")]
            public int Departmentid { get; set; }
    
            [ConcurrencyCheck]
            [DwColumn("Department", "Name")]
            public string Name { get; set; }
    
        }
    
    }
    
    Back to top Generated by Appeon