91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

最新開源DBLayer,數據庫操作也可以很簡單

發布時間:2020-07-29 20:52:08 來源:網絡 閱讀:502 作者:zddnd 欄目:數據庫

DBLayer,我最近開源的數據庫輕量級orm框架,目前支持sqlserver、mysql、oracle, 特別做了分頁的封裝。

這個框架從七八年前開始逐漸升級而來,也經歷了不少項目,希望可以將大家從sql字符串中解放出來。

開源地址

https://github.com/wutao0315/DBLayer

 

訪問代碼案例

最新開源DBLayer,數據庫操作也可以很簡單

var id = TheService.InsertEntity<SysLog, long>(
        () => new SysLog()
        {
            LogId = -1,
            LogContentJson = "測試",
            LogCreater = "測試",
            LogCreateTime = DateTime.Now,
            LogType = "1"
        });

最新開源DBLayer,數據庫操作也可以很簡單

分頁操作

最新開源DBLayer,數據庫操作也可以很簡單

        /// <summary>
        /// 分頁查詢        /// </summary>
        /// <param name="condition">查詢條件</param>
        /// <returns></returns>
        public IEnumerable<SysUser> Seach(SysUserCondition.Search condition)
        {            var page = new Pager<SysUserCondition.Search>()
            {
                Condition = condition,
                Table = "sys_user",
                Key = "user_id",
                Order = string.Empty,
                Field = "*",
                WhereAction = (Condition, Where, Paramters) =>
                {                    if (!string.IsNullOrEmpty(Condition.UserName))
                    {
                        Where.Append("AND user_name LIKE @user_name ");
                        Paramters.Add(base.CreateParameter("@user_name", string.Concat("%", Condition.UserName, "%")));
                    }                    if (!string.IsNullOrEmpty(Condition.UserEmail))
                    {
                        Where.Append("AND user_email LIKE @user_email ");
                        Paramters.Add(base.CreateParameter("@user_email", string.Concat("%", Condition.UserEmail, "%")));
                    }                    if (!string.IsNullOrEmpty(Condition.UserMobile))
                    {
                        Where.Append("AND user_mobile LIKE @user_mobile ");
                        Paramters.Add(base.CreateParameter("@user_mobile", string.Concat("%", Condition.UserMobile, "%")));
                    }
                }
            };            var result = base.GetResultByPager<SysUser, SysUserCondition.Search>(page);            return result;
        }

最新開源DBLayer,數據庫操作也可以很簡單

推薦和spring 配合使用,具體配置代碼請進入源碼查看。

同時在spring 配置多個數據庫連接,支持數據庫連接字符串密碼加密。只需要在 passwordKey加入密鑰

最新開源DBLayer,數據庫操作也可以很簡單

  <object id="sql_wxius_string_server" type="DBLayer.Core.ConnectionString, DBLayer.Core" singleton="true">
    <property name="Properties">
      <name-values>
        <add key="userid" value="sa" />
        <add key="password" value="***" />
        <add key="passwordKey" value="" />
        <add key="database" value="wxius" />
        <add key="datasource" value="." />
      </name-values>
    </property>
    <property name="ConnectionToken" value="Password=${password};Persist Security Info=True;User ID=${userid};Initial Catalog=${database};Data Source=${datasource};pooling=true;min pool size=5;max pool size=10" />
  </object>

最新開源DBLayer,數據庫操作也可以很簡單

數據庫唯一標識除了可以數據自動編碼,還支持在代碼端自動 生成 GUID 和 時間點。下面代碼是uuid,時間點并按照順序生成的自動編號

最新開源DBLayer,數據庫操作也可以很簡單

  <object id="uuidGenerator" type="DBLayer.Persistence.UUIDGenerator, DBLayer.Persistence" singleton="true" >
    <!--workerId:區域(機房):3 bits-->
    <constructor-arg name="workerId" value="1"/>
    <!--regionId:機器編號:10 bits-->
    <constructor-arg name="regionId" value="1"/>
    <!--twepoch:基準時間:Thu, 04 Nov 2010 01:42:54 GMT-->
    <!--(long)(DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc)).TotalMilliseconds-->
    <constructor-arg name="twepoch" value="1288834974657"/>
  </object>

最新開源DBLayer,數據庫操作也可以很簡單


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

乌兰县| 蒙阴县| 万全县| 五台县| 青铜峡市| 辽中县| 浠水县| 阿坝| 庆安县| 抚顺县| 广饶县| 夏津县| 黄骅市| 岚皋县| 日土县| 南溪县| 江阴市| 丰都县| 新竹县| 青川县| 金昌市| 项城市| 莎车县| 浙江省| 巴南区| 惠水县| 玛纳斯县| 灵璧县| 新邵县| 阿瓦提县| 读书| 深泽县| 平陆县| 密山市| 福安市| 登封市| 弥勒县| 松潘县| 大埔区| 仪陇县| 奉化市|