// transfer model list to data list
 // links:
 //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
 //  docLink: http://sql2x.org/documentationLink/1d6a48d9-fe39-4397-b8fa-a332da164cbf
 // parameters:
 //  CrudeClientEventData: key of table CrudeClientEventData
 public static void ModelListToDataList(List <CrudeClientEventModel> modelList, List <CrudeClientEventData> dataList)
 {
     foreach (CrudeClientEventModel model in modelList)
     {
         var data = new CrudeClientEventData();
         ModelToData(model, data);
         dataList.Add(data);
     }
 }
 // copy all rows from a List of SOAP Contracts to a List of serialized data objects
 // links:
 //  docLink: http://sql2x.org/documentationLink/1c6c6b9c-e201-4590-8c69-d38a0ad2a9f7
 public static void ContractListToDataList(List <CrudeClientEventContract> contractList, List <CrudeClientEventData> dataList)
 {
     foreach (CrudeClientEventContract contract in contractList)
     {
         var data = new CrudeClientEventData();
         CrudeClientEventService.ContractToData(contract, data);
         dataList.Add(data);
     }
 }
        // fetch by Primary key into current object
        // links:
        //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
        //  docLink: http://sql2x.org/documentationLink/bbab4791-c9e7-49bf-90d5-fca19b1fedaa
        // parameters:
        //  clientEventId: primary key of table client_event
        public CrudeClientEventContract FetchByClientEventId(System.Guid clientEventId)
        {
            var dataAccessLayer = new CrudeClientEventData();
            var contract        = new CrudeClientEventContract();

            dataAccessLayer.FetchByClientEventId(clientEventId);
            DataToContract(dataAccessLayer, contract);

            return(contract);
        }
        // fetch by Primary key into current object
        // links:
        //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
        //  docLink: http://sql2x.org/documentationLink/fdcc33b4-08f1-43c3-ae28-95fbf029c3bd
        // parameters:
        //  CrudeClientEventData: primary key of table CrudeClientEventData
        public CrudeClientEventModel FetchByClientEventId(System.Guid clientEventId)
        {
            var dataAccessLayer = new CrudeClientEventData();
            var model           = new CrudeClientEventModel();

            dataAccessLayer.FetchByClientEventId(clientEventId);
            DataToModel(dataAccessLayer, model);

            return(model);
        }
Example #5
0
        // fetch all from table into new List of class instances, only populating specific columns,
        //  with a limit on number of returned rows and order by columns starting at a specific row
        // links:
        //  docLink: http://sql2x.org/documentationLink/12d2812e-e963-4f26-8014-48c4e9cfb3ae
        public static List <CrudeClientEventData> FetchAllWithLimitAndOffset(int limit, int offset)
        {
            var dataList = new List <CrudeClientEventData>();

            // create query against client_event
            // this will be ansi sql and parameterized
            // parameterized queries are a good way of preventing sql injection
            //   and to make sure the query plan is pre-compiled
            // links:
            // docLink: http://sql2x.org/documentationLink/21eca289-4747-4a75-b0a2-1a58457be608
            string sql = @" select client_event_id, client_id, client_event_type_rcd, user_id, date_time
                            from [client_event]";

            // open standard connection
            // the connection is found in web.config
            // the connection is closed upon completion of the reader
            // links:
            // docLink: http://sql2x.org/documentationLink/c3e624a4-8479-4c17-bec7-ec09f3abbe64
            using (var conn = new SqlConnection(Conn.ConnectionString)) {
                conn.Open();

                using (var command = new SqlCommand(sql, conn)) {
                    // execute query against client_event
                    // if the query fails in the preprocessor of sql server
                    //   an exception will be raised
                    // links:
                    // docLink: http://sql2x.org/documentationLink/6507b543-adbc-4863-810b-8db439f40d5c
                    IDataReader reader = command.ExecuteReader(CommandBehavior.SingleResult);

                    int count = 0;

                    // read all rows returned from the query of client_event
                    // read all columns from the datareader and
                    //   populate the List of C# objects with them
                    // links:
                    // docLink: http://sql2x.org/documentationLink/fcd15e2f-df3f-44d8-8a13-d2e93d97f685
                    while (reader.Read())
                    {
                        if ((count >= offset) && (count <= offset + limit))
                        {
                            var data = new CrudeClientEventData();
                            data.Populate(reader);
                            dataList.Add(data);
                        }
                        count++;
                        if (count > limit + offset)
                        {
                            break;
                        }
                    }
                }

                return(dataList);
            }
        }
Example #6
0
        // fetch by Foreign key into new List of class instances
        // links:
        //  docLink: http://sql2x.org/documentationLink/13095cd7-f136-4532-8969-c50c62cc05ef
        public static List <CrudeClientEventData> FetchByClientEventTypeRcd(string clientEventTypeRcd)
        {
            var dataList = new List <CrudeClientEventData>();

            // create query against client_event
            // this will be ansi sql and parameterized
            // parameterized queries are a good way of preventing sql injection
            //   and to make sure the query plan is pre-compiled
            // links:
            // docLink: http://sql2x.org/documentationLink/86c78f05-a65f-4dfe-b048-d0cbece49f4e
            string sql = @" select client_event_id, client_id, client_event_type_rcd, user_id, date_time
                            from [client_event]
                            where client_event_type_rcd = @client_event_type_rcd
                              ";

            // open standard connection
            // the connection is found in web.config
            // the connection is closed upon completion of the reader
            // links:
            // docLink: http://sql2x.org/documentationLink/6fd25822-459f-4796-803a-071a3a270aa0
            using (var conn = new SqlConnection(Conn.ConnectionString)) {
                conn.Open();

                using (var command = new SqlCommand(sql, conn)) {
                    // add foreign key column
                    // this foreign key column will be used together with the prepared ansi sql statement
                    // links:
                    // docLink: http://sql2x.org/documentationLink/8aec2e5c-4732-4662-badb-83b89d1c34a9
                    command.Parameters.Add("@client_event_type_rcd", SqlDbType.NVarChar).Value = clientEventTypeRcd.Replace("'", "''");

                    // execute query against client_event
                    // if the query fails in the preprocessor of sql server
                    //   an exception will be raised
                    // links:
                    // docLink: http://sql2x.org/documentationLink/bb9abe5c-d2c1-455a-b597-a2af0a35de5a
                    IDataReader reader = command.ExecuteReader(CommandBehavior.SingleResult);

                    // read all rows returned from the query of client_event
                    // read all columns from the datareader and
                    //   populate the List of C# objects with them
                    // links:
                    // docLink: http://sql2x.org/documentationLink/5c413c03-5ddc-472a-a63d-53aecc7a2573
                    while (reader.Read())
                    {
                        var data = new CrudeClientEventData();
                        data.Populate(reader);
                        dataList.Add(data);
                    }
                }

                return(dataList);
            }
        }
        // fetch all rows from table with an offset, and limit of rows
        // links:
        //  docLink: http://sql2x.org/documentationLink/a87e5c54-b47e-4031-bc3b-837b4cf9f692
        public List <CrudeClientEventModel> FetchAllWithLimitAndOffset(string limit, string offset)
        {
            var list = new List <CrudeClientEventModel>();
            List <CrudeClientEventData> dataList = CrudeClientEventData.FetchAllWithLimitAndOffset(int.Parse(limit), int.Parse(offset));

            foreach (CrudeClientEventData crudeClientEventBusiness in dataList)
            {
                var model = new CrudeClientEventModel();
                DataToModel(crudeClientEventBusiness, model);
                list.Add(model);
            }

            return(list);
        }
        // copy all rows from a List of serialized data objects in CrudeClientEventData to a List of SOAP Contracts
        // links:
        //  docLink: http://sql2x.org/documentationLink/3d3e60c3-69e4-43d6-8bd5-14a67a6ecf58
        public List <CrudeClientEventModel> FetchAll()
        {
            var list = new List <CrudeClientEventModel>();
            List <CrudeClientEventData> dataList = CrudeClientEventData.FetchAll();

            foreach (CrudeClientEventData crudeClientEventBusiness in dataList)
            {
                var model = new CrudeClientEventModel();
                DataToModel(crudeClientEventBusiness, model);
                list.Add(model);
            }

            return(list);
        }
        // copy all rows from a List of serialized data objects to a List of SOAP Contracts,
        //  with a limit on number of returned rows and order by columns, starting at a specific row
        // links:
        //  docLink: http://sql2x.org/documentationLink/3fe9f1b3-97b6-4f58-a0f2-adfcbd973bfc
        public List <CrudeClientEventContract> FetchAllWithLimitAndOffset(int limit, int offset)
        {
            var list = new List <CrudeClientEventContract>();
            List <CrudeClientEventData> dataList = CrudeClientEventData.FetchAllWithLimitAndOffset(limit, offset);

            foreach (CrudeClientEventData crudeClientEvent in dataList)
            {
                var contract = new CrudeClientEventContract();
                DataToContract(crudeClientEvent, contract);
                list.Add(contract);
            }

            return(list);
        }
Example #10
0
        // copy all rows from a List of serialized data objects in CrudeClientEventData to a List of SOAP Contracts
        // links:
        //  docLink: http://sql2x.org/documentationLink/9204c68e-93b8-4c77-af3c-3181985ff75f
        public List <CrudeClientEventContract> FetchAll()
        {
            var list = new List <CrudeClientEventContract>();
            List <CrudeClientEventData> dataList = CrudeClientEventData.FetchAll();

            foreach (CrudeClientEventData crudeClientEvent in dataList)
            {
                var contract = new CrudeClientEventContract();
                DataToContract(crudeClientEvent, contract);
                list.Add(contract);
            }

            return(list);
        }
        // fetch all from table into new List of class instances, filtered by any column
        // links:
        //  docLink: http://sql2x.org/documentationLink/db27658d-4d23-46d7-9970-7bbaef8634b0
        public List <CrudeClientEventModel> FetchWithFilter(System.Guid clientEventId, System.Guid clientId, string clientEventTypeRcd, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeClientEventModel>();
            List <CrudeClientEventData> dataList = CrudeClientEventData.FetchWithFilter(clientEventId, clientId, clientEventTypeRcd, userId, dateTime);

            foreach (CrudeClientEventData data in dataList)
            {
                var crudeClientEventBusinessModel = new CrudeClientEventModel();
                DataToModel(data, crudeClientEventBusinessModel);
                list.Add(crudeClientEventBusinessModel);
            }

            return(list);
        }
Example #12
0
        // fetch by Primary key into new class instance
        // links:
        //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
        //  docLink: http://sql2x.org/documentationLink/7a625d0a-3028-42ce-a543-72ea3673cef4
        // parameters:
        //  clientEventId: primary key of table client_event
        public static CrudeClientEventData GetByClientEventId(System.Guid clientEventId)
        {
            // create query against client_event
            // this will be ansi sql and parameterized
            // parameterized queries are a good way of preventing sql injection
            //   and to make sure the query plan is pre-compiled
            // links:
            // docLink: http://sql2x.org/documentationLink/72f5fc83-c460-40fe-bac9-73b7ee0c6b77
            string sql = @" select top 1 client_event_id, client_id, client_event_type_rcd, user_id, date_time
                            from [client_event]
                            where client_event_id = @client_event_id";

            var ret = new CrudeClientEventData();

            // open standard connection
            // the connection is found in web.config
            // the connection is closed upon completion of the reader
            // links:
            // docLink: http://sql2x.org/documentationLink/1ecca728-0c07-4dd7-b095-d10777b25b70
            using (var conn = new SqlConnection(Conn.ConnectionString)) {
                conn.Open();

                using (var command = new SqlCommand(sql, conn)) {
                    // add primary key
                    // this primary key will be used together with the prepared ansi sql statement
                    // links:
                    // docLink: http://sql2x.org/documentationLink/1ecca728-0c07-4dd7-b095-d10777b25b70
                    command.Parameters.Add("@client_event_id", SqlDbType.UniqueIdentifier).Value = clientEventId;

                    // execute query against client_event
                    // if the query fails in the preprocessor of sql server
                    //   an exception will be raised
                    // links:
                    // docLink: http://sql2x.org/documentationLink/fd5c5faa-b400-4f29-b12b-9675c53a757f
                    IDataReader reader = command.ExecuteReader(CommandBehavior.SingleRow);

                    // populate serialized class if a row was found
                    if (reader.Read())
                    {
                        ret.Populate(reader);
                    }
                }
            }

            return(ret);
        }
Example #13
0
        // fetch all from table into new List of class instances, with a limit on number of returned rows and order by columns
        // links:
        //  docLink: http://sql2x.org/documentationLink/dfaa482b-059b-4f17-a9a9-4885138dbb46
        public static List <CrudeClientEventData> FetchAllWithLimit(int limit)
        {
            var dataList = new List <CrudeClientEventData>();

            // create query against client_event
            // this will be ansi sql and parameterized
            // parameterized queries are a good way of preventing sql injection
            //   and to make sure the query plan is pre-compiled
            // links:
            // docLink: http://sql2x.org/documentationLink/41f82773-6d37-4ebe-840c-c60e06337f45
            string sql = @" select top " + limit.ToString() + @" client_event_id, client_id, client_event_type_rcd, user_id, date_time
                            from [client_event]";

            // open standard connection
            // the connection is found in web.config
            // the connection is closed upon completion of the reader
            // links:
            // docLink: http://sql2x.org/documentationLink/da228d98-b30e-4d79-89ae-98e813437753
            using (var conn = new SqlConnection(Conn.ConnectionString)) {
                conn.Open();

                using (var command = new SqlCommand(sql, conn)) {
                    // execute query against client_event
                    // if the query fails in the preprocessor of sql server
                    //   an exception will be raised
                    // links:
                    // docLink: http://sql2x.org/documentationLink/c32ad724-8a03-4b4c-b6fb-a5abfb1d707e
                    IDataReader reader = command.ExecuteReader(CommandBehavior.SingleResult);

                    // read all rows returned from the query of client_event
                    // read all columns from the datareader and
                    //   populate the List of C# objects with them
                    // links:
                    // docLink: http://sql2x.org/documentationLink/9ba4395d-d8a4-4427-b80f-7b828e34da7a
                    while (reader.Read())
                    {
                        var data = new CrudeClientEventData();
                        data.Populate(reader);
                        dataList.Add(data);
                    }
                }

                return(dataList);
            }
        }
Example #14
0
        // fetch all rows from table client_event into new List of class instances
        // links:
        //  docLink: http://sql2x.org/documentationLink/7ca0c014-527e-4a0a-bd1f-12f4d8ea4b43
        public static List <CrudeClientEventData> FetchAll()
        {
            var dataList = new List <CrudeClientEventData>();

            // create query against client_event
            // this will be ansi sql and parameterized
            // parameterized queries are a good way of preventing sql injection
            //   and to make sure the query plan is pre-compiled
            // links:
            // docLink: http://sql2x.org/documentationLink/72f9f1bc-447c-4327-9d26-4b0790a07ff8
            string sql = @" select client_event_id, client_id, client_event_type_rcd, user_id, date_time
                            from [client_event]";

            // open standard connection
            // the connection is found in web.config
            // the connection is closed upon completion of the reader
            // links:
            // docLink: http://sql2x.org/documentationLink/952b3f82-bc00-4e82-9430-6bc26ff8bc4d
            using (var conn = new SqlConnection(Conn.ConnectionString)) {
                conn.Open();

                using (var command = new SqlCommand(sql, conn)) {
                    // execute query against client_event
                    // if the query fails in the preprocessor of sql server
                    //   an exception will be raised
                    // links:
                    // docLink: http://sql2x.org/documentationLink/ed55cc5b-d6be-4f5e-9385-ee726dfc2bf1
                    IDataReader reader = command.ExecuteReader(CommandBehavior.SingleResult);

                    // read all rows returned from the query of client_event
                    // read all columns from the datareader and
                    //   populate the List of C# objects with them
                    // links:
                    // docLink: http://sql2x.org/documentationLink/c1b8b800-b250-4822-a699-d93a35f4414d
                    while (reader.Read())
                    {
                        var data = new CrudeClientEventData();
                        data.Populate(reader);
                        dataList.Add(data);
                    }
                }

                return(dataList);
            }
        }
Example #15
0
        // fetch all rows from table into new List of Contracts, filtered by any column
        // links:
        //  docLink: http://sql2x.org/documentationLink/ce01ef4a-5cd0-4e51-b211-9c0a15b791a0
        public List <CrudeClientEventContract> FetchWithFilter(System.Guid clientEventId, System.Guid clientId, string clientEventTypeRcd, System.Guid userId, System.DateTime dateTime)
        {
            var list = new List <CrudeClientEventContract>();
            List <CrudeClientEventData> dataList = CrudeClientEventData.FetchWithFilter(
                clientEventId: clientEventId,
                clientId: clientId,
                clientEventTypeRcd: clientEventTypeRcd,
                userId: userId,
                dateTime: dateTime
                );

            foreach (CrudeClientEventData data in dataList)
            {
                var crudeClientEventContract = new CrudeClientEventContract();
                DataToContract(data, crudeClientEventContract);
                list.Add(crudeClientEventContract);
            }

            return(list);
        }
 // get a count of rows in table
 // links:
 //  docLink: http://sql2x.org/documentationLink/39677f9e-daee-45c6-9527-da98a0d7958d
 public int FetchAllCount()
 {
     return(CrudeClientEventData.FetchAllCount());
 }
Example #17
0
 // fetch by Foreign key into new List of class instances
 // links:
 //  docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e
 public List <CrudeClientEventContract> FetchByClientEventTypeRcd(string clientEventTypeRcd)
 {
     return(DataListToContractList(CrudeClientEventData.FetchByClientEventTypeRcd(clientEventTypeRcd)));
 }
 // fetch by Search key into current object
 // links:
 //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
 //  docLink: http://sql2x.org/documentationLink/87368fa6-b618-4f0c-acbb-1fc4e273bb2d
 // parameters:
 //  UserId: key of table CrudeClientEventData
 public List <CrudeClientEventModel> FetchByUserId(System.Guid userId)
 {
     return(DataListToModelList(CrudeClientEventData.FetchByUserId(userId)));
 }
 // fetch by Search key into current object
 // links:
 //  crud definition: https://en.wikipedia.org/wiki/Create,_read,_update_and_delete
 //  docLink: http://sql2x.org/documentationLink/87368fa6-b618-4f0c-acbb-1fc4e273bb2d
 // parameters:
 //  ClientEventTypeRcd: key of table CrudeClientEventData
 public List <CrudeClientEventModel> FetchByClientEventTypeRcd(string clientEventTypeRcd)
 {
     return(DataListToModelList(CrudeClientEventData.FetchByClientEventTypeRcd(clientEventTypeRcd)));
 }
 // delete row
 // links:
 //  docLink: http://sql2x.org/documentationLink/59823bf7-4ad8-4684-a48b-2abd49c607ee
 public void Delete(System.Guid clientEventId)
 {
     CrudeClientEventData.Delete(clientEventId);
 }
Example #21
0
        // fetch all from table into new List of class instances, filtered by any column
        // links:
        //  docLink: http://sql2x.org/documentationLink/a736bbfd-030d-492e-a86a-7a5e478eeb79
        public static List <CrudeClientEventData> FetchWithFilter(System.Guid clientEventId, System.Guid clientId, string clientEventTypeRcd, System.Guid userId, System.DateTime dateTime)
        {
            var dataList = new List <CrudeClientEventData>();

            // create query against client_event
            // this will be ansi sql and parameterized
            // parameterized queries are a good way of preventing sql injection
            //   and to make sure the query plan is pre-compiled
            // links:
            // docLink: http://sql2x.org/documentationLink/06da7a50-8760-48cd-b789-a41cac3edd13
            string sql = @" select client_event_id, client_id, client_event_type_rcd, user_id, date_time
                            from [client_event]
                            where 1 = 1";

            // open standard connection
            // the connection is found in web.config
            // the connection is closed upon completion of the reader
// links:
// docLink: http://sql2x.org/documentationLink/6ec2495f-3a49-4a94-ad59-0ce064fc8654
            using (var conn = new SqlConnection(Conn.ConnectionString)) {
                conn.Open();

                using (var command = new SqlCommand(sql, conn)) {
                    // add search column(s) if they are not null or empty
                    // this search column(s) will be used together with the prepared ansi sql statement
                    // links:
                    // docLink: http://sql2x.org/documentationLink/2193123a-3534-412b-8521-dac14bb3884d
                    if (clientEventId != Guid.Empty)
                    {
                        sql += "  and client_event_id = @client_event_id";
                        command.Parameters.Add("@client_event_id", SqlDbType.UniqueIdentifier).Value = clientEventId;
                    }
                    if (clientId != Guid.Empty)
                    {
                        sql += "  and client_id = @client_id";
                        command.Parameters.Add("@client_id", SqlDbType.UniqueIdentifier).Value = clientId;
                    }
                    if (!string.IsNullOrEmpty(clientEventTypeRcd))
                    {
                        sql += "  and client_event_type_rcd like '%' + @client_event_type_rcd + '%'";
                        command.Parameters.Add("@client_event_type_rcd", SqlDbType.NVarChar).Value = clientEventTypeRcd.Replace("'", "''");
                    }
                    if (userId != Guid.Empty)
                    {
                        sql += "  and user_id = @user_id";
                        command.Parameters.Add("@user_id", SqlDbType.UniqueIdentifier).Value = userId;
                    }
                    if (dateTime != DateTime.MinValue)
                    {
                        sql += "  and date_time = @date_time";
                        command.Parameters.Add("@date_time", SqlDbType.DateTime).Value = dateTime;
                    }
                    command.CommandText = sql;

                    // execute query against client_event
                    // if the query fails in the preprocessor of sql server
                    //   an exception will be raised
                    // links:
                    // docLink: http://sql2x.org/documentationLink/9f9fcbf4-4764-4b2e-8dc6-41d0366c95c9
                    IDataReader reader = command.ExecuteReader(CommandBehavior.SingleResult);

                    // read all rows returned from the query of client_event
                    // read all columns from the datareader and
                    //   populate the List of C# objects with them
                    // links:
                    // docLink: http://sql2x.org/documentationLink/60181c7c-4a5e-41a3-9599-4e7a0aaf0cc8
                    while (reader.Read())
                    {
                        var data = new CrudeClientEventData();
                        data.Populate(reader);
                        dataList.Add(data);
                    }
                }

                return(dataList);
            }
        }
Example #22
0
 // fetch by Foreign key into new List of class instances
 // links:
 //  docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e
 public List <CrudeClientEventContract> FetchByUserId(System.Guid userId)
 {
     return(DataListToContractList(CrudeClientEventData.FetchByUserId(userId)));
 }