博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
类定义(仿照LINQ)小ORM类
阅读量:5111 次
发布时间:2019-06-13

本文共 671 字,大约阅读时间需要 2 分钟。

 public class MYORM

    {
        public String MysqlStr = "";
        
        public MYORM()
        {
            this.MysqlStr = "Select * from Userinfo where ";

        }

        public MYORM(String SQLStr)
        {
            if (SQLStr.ToString().Length > 0)
            {
                this.MysqlStr = this.MysqlStr + SQLStr;
            }
            else
            {
                this.MysqlStr =   "Select * from Userinfo where ";
        
            }
          
        }

        public MYORM ORM_On (String Where)

        {
            this.MysqlStr = this.MysqlStr+ Where;

            return new MYORM(MysqlStr);

        }

        public MYORM ORM_AND(String Where)

        {
            this.MysqlStr = this.MysqlStr + Where;

            return new MYORM(MysqlStr);

        }

        public MYORM  And (String Where)

        {
            this.MysqlStr = this.MysqlStr + Where;

            return new MYORM(MysqlStr);

        }

    }

转载于:https://www.cnblogs.com/greefsong/archive/2013/06/05/3119117.html

你可能感兴趣的文章
Jzoj4786 小a的强迫症
查看>>
redis配置密码
查看>>
bootstrap之辅助类
查看>>
子元素定位,父元素高度自适应
查看>>
js获取json属性值的两种方法
查看>>
[Algorithms] Queue & Priority Queue
查看>>
[React + Functional Programming ADT] Connect State ADT Based Redux Actions to a React Application
查看>>
[RxJS] Getting Input Text with Map
查看>>
[Node.js]27. Level 5: URL Building & Doing the Request
查看>>
G Data为用户提供微软安全漏洞解决方案
查看>>
java中多线程的实例代码
查看>>
保留字段数组,一定要用char
查看>>
MySQL 忘记 root 密码重置方法
查看>>
排序之归并排序
查看>>
Windows Socket 编程 : 支持多线程(TCP)(环境:VS2010)
查看>>
BZOJ1096: [ZJOI2007]仓库建设(dp+斜率优化)
查看>>
CAS5.0.X 使用经历
查看>>
HDU 2610 (自己完全找不到思路) Sequence one
查看>>
JAVA对存储过程的调用方法(本文源于网络)
查看>>
排序思想
查看>>