Ejemplo n.º 1
0
        // 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 <CrudeDefaultErrorTypeRefModel> FetchAllWithLimitAndOffset(string limit, string offset)
        {
            var list = new List <CrudeDefaultErrorTypeRefModel>();
            List <CrudeDefaultErrorTypeRefData> dataList = CrudeDefaultErrorTypeRefData.FetchAllWithLimitAndOffset(int.Parse(limit), int.Parse(offset));

            foreach (CrudeDefaultErrorTypeRefData crudeDefaultErrorTypeRefBusiness in dataList)
            {
                var model = new CrudeDefaultErrorTypeRefModel();
                DataToModel(crudeDefaultErrorTypeRefBusiness, model);
                list.Add(model);
            }

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

            foreach (CrudeDefaultErrorTypeRefData crudeDefaultErrorTypeRefBusiness in dataList)
            {
                var model = new CrudeDefaultErrorTypeRefModel();
                DataToModel(crudeDefaultErrorTypeRefBusiness, model);
                list.Add(model);
            }

            return(list);
        }
Ejemplo n.º 3
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:
        //  defaultErrorTypeRcd: primary key of table default_error_type_ref
        public static CrudeDefaultErrorTypeRefData GetByDefaultErrorTypeRcd(string defaultErrorTypeRcd)
        {
            // create query against default_error_type_ref
            // 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 default_error_type_rcd, default_error_type_name, default_user_id, date_time
                            from [default_error_type_ref]
                            where default_error_type_rcd = @default_error_type_rcd
                            order by default_error_type_name";

            var ret = new CrudeDefaultErrorTypeRefData();

            // 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("@default_error_type_rcd", SqlDbType.NVarChar).Value = defaultErrorTypeRcd;

                    // execute query against default_error_type_ref
                    // 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);
        }
Ejemplo n.º 4
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 <CrudeDefaultErrorTypeRefData> FetchAllWithLimit(int limit)
        {
            var dataList = new List <CrudeDefaultErrorTypeRefData>();

            // create query against default_error_type_ref
            // 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() + @" default_error_type_rcd, default_error_type_name, default_user_id, date_time
                            from [default_error_type_ref]
                            order by default_error_type_name";

            // 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 default_error_type_ref
                    // 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 default_error_type_ref
                    // 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 CrudeDefaultErrorTypeRefData();
                        data.Populate(reader);
                        dataList.Add(data);
                    }
                }

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

            // create query against default_error_type_ref
            // 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 default_error_type_rcd, default_error_type_name, default_user_id, date_time
                            from [default_error_type_ref]
                            order by default_error_type_name";

            // 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 default_error_type_ref
                    // 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 default_error_type_ref
                    // 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 CrudeDefaultErrorTypeRefData();
                        data.Populate(reader);
                        dataList.Add(data);
                    }
                }

                return(dataList);
            }
        }
Ejemplo n.º 6
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 <CrudeDefaultErrorTypeRefContract> FetchWithFilter(string defaultErrorTypeRcd, string defaultErrorTypeName, System.Guid defaultUserId, System.DateTime dateTime)
        {
            var list = new List <CrudeDefaultErrorTypeRefContract>();
            List <CrudeDefaultErrorTypeRefData> dataList = CrudeDefaultErrorTypeRefData.FetchWithFilter(
                defaultErrorTypeRcd: defaultErrorTypeRcd,
                defaultErrorTypeName: defaultErrorTypeName,
                defaultUserId: defaultUserId,
                dateTime: dateTime
                );

            foreach (CrudeDefaultErrorTypeRefData data in dataList)
            {
                var crudeDefaultErrorTypeRefContract = new CrudeDefaultErrorTypeRefContract();
                DataToContract(data, crudeDefaultErrorTypeRefContract);
                list.Add(crudeDefaultErrorTypeRefContract);
            }

            return(list);
        }
Ejemplo n.º 7
0
 // delete a row in table based on primary key
 // links:
 //  docLink: http://sql2x.org/documentationLink/eb0597e0-8ea0-425c-88af-213a170bbd5e
 public void Delete(string defaultErrorTypeRcd)
 {
     CrudeDefaultErrorTypeRefData.Delete(defaultErrorTypeRcd);
 }
Ejemplo n.º 8
0
 // get a count of rows in table
 // links:
 //  docLink: http://sql2x.org/documentationLink/7cd5e52c-b3d7-4566-a27a-408d0732dd88
 public int FetchAllCount()
 {
     return(CrudeDefaultErrorTypeRefData.FetchAllCount());
 }
Ejemplo n.º 9
0
 // fetch by Foreign key into new List of class instances
 // links:
 //  docLink: http://sql2x.org/documentationLink/a7599485-4f00-4ebf-974d-53f69c43654e
 public List <CrudeDefaultErrorTypeRefContract> FetchByDefaultUserId(System.Guid defaultUserId)
 {
     return(DataListToContractList(CrudeDefaultErrorTypeRefData.FetchByDefaultUserId(defaultUserId)));
 }
Ejemplo n.º 10
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 <CrudeDefaultErrorTypeRefData> FetchWithFilter(string defaultErrorTypeRcd, string defaultErrorTypeName, System.Guid defaultUserId, System.DateTime dateTime)
        {
            var dataList = new List <CrudeDefaultErrorTypeRefData>();

            // create query against default_error_type_ref
            // 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 default_error_type_rcd, default_error_type_name, default_user_id, date_time
                            from [default_error_type_ref]
                            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 (!string.IsNullOrEmpty(defaultErrorTypeRcd))
                    {
                        sql += "  and default_error_type_rcd like '%' + @default_error_type_rcd + '%'";
                        command.Parameters.Add("@default_error_type_rcd", SqlDbType.NVarChar).Value = defaultErrorTypeRcd.Replace("'", "''");
                    }
                    if (!string.IsNullOrEmpty(defaultErrorTypeName))
                    {
                        sql += "  and default_error_type_name like '%' + @default_error_type_name + '%'";
                        command.Parameters.Add("@default_error_type_name", SqlDbType.NVarChar).Value = defaultErrorTypeName.Replace("'", "''");
                    }
                    if (defaultUserId != Guid.Empty)
                    {
                        sql += "  and default_user_id = @default_user_id";
                        command.Parameters.Add("@default_user_id", SqlDbType.UniqueIdentifier).Value = defaultUserId;
                    }
                    if (dateTime != DateTime.MinValue)
                    {
                        sql += "  and date_time = @date_time";
                        command.Parameters.Add("@date_time", SqlDbType.DateTime).Value = dateTime;
                    }
                    sql += " order by default_error_type_name";

                    command.CommandText = sql;

                    // execute query against default_error_type_ref
                    // 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 default_error_type_ref
                    // 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 CrudeDefaultErrorTypeRefData();
                        data.Populate(reader);
                        dataList.Add(data);
                    }
                }

                return(dataList);
            }
        }
Ejemplo n.º 11
0
 // 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:
 //  DefaultUserId: key of table CrudeDefaultErrorTypeRefData
 public List <CrudeDefaultErrorTypeRefModel> FetchByDefaultUserId(System.Guid defaultUserId)
 {
     return(DataListToModelList(CrudeDefaultErrorTypeRefData.FetchByDefaultUserId(defaultUserId)));
 }