成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

NHibernate如何在.NETCore應(yīng)用中使用-創(chuàng)新互聯(lián)

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)碛嘘P(guān)NHibernate如何在.NET Core應(yīng)用中使用,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

涇縣ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18980820575(備注:SSL證書合作)期待與您的合作!

前言

Nhibernate 來源于非常優(yōu)秀的基于Java的Hibernate 關(guān)系型持久化工具。NHibernate 最近發(fā)布了 5.1.3 版本, 支持 .NET Standard 2.0 , 這意味著可以在 .NET Core 2.0 應(yīng)用中使用, 本文就已 WebAPI 應(yīng)用為例, 介紹一下如何在 .NET Core 應(yīng)用中如何使用 NHibernate 。下面話不多說了,來一起看看詳細(xì)的介紹的吧

使用方法如下:

1、 新建一個(gè)基于 .NET Core 的 Web API應(yīng)用, 命令如下:

mkir WebApiTest
cd WebApiTest/
dotnet new webapi

2、 添加 NHibernate 包以及對(duì)應(yīng)的數(shù)據(jù)庫(kù)驅(qū)動(dòng)程序(以 Npgsql 為例):

dotnet add pakcage NHibernate
dotnet add package NHibernate.NetCore
dotnet add package Npgsql

現(xiàn)在打開項(xiàng)目文件 WebApiTest.csproj , 可以看到已經(jīng)添加了這些包:

 <ItemGroup>
 <PackageReference Include="Microsoft.AspNetCore.App" />
 <PackageReference Include="NHibernate" Version="5.1.3" />
 <PackageReference Include="NHibernate.NetCore" Version="1.0.1" />
 <PackageReference Include="NpgSql" Version="4.0.2" />
 </ItemGroup>

3、 在項(xiàng)目中新建一個(gè) Models 目錄, 并創(chuàng)建實(shí)體類以及對(duì)應(yīng)的 xml 映射文件, 代碼如下:

namespace WebApiTest.Models {

 public class GpsPosition {
 public virtual long Id { get; set; }
 public virtual string UserAgent { get; set;}
 public virtual long? Timestamp { get; set; }
 public virtual float? Latitude { get; set; }
 public virtual float? Longitude { get; set; }
 public virtual float? Accuracy { get; set; }
 public virtual float? Altitude { get; set; }
 public virtual float? AltitudeAccuracy { get; set; }
 public virtual float? Heading { get; set; }
 public virtual float? Speed { get; set; }
 public virtual string Tag { get; set; }
 }
}

對(duì)應(yīng)的 xml 映射文件如下:

<?xml version="1.0" encoding="utf-8"?>
<hibernate-mapping
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
 xmlns="urn:nhibernate-mapping-2.2"
 namespace="WebApiTest.Models"
 assembly="WebApiTest">
 <class name="GpsPosition" schema="public" table="gps_position">
 <id name="Id" column="id" type="long">
 <generator class="sequence">
 <param name="sequence">public.gps_position_id_seq</param>
 </generator>
 </id>
 <property name="UserAgent" column="user_agent" type="string" />
 <property name="Timestamp" column="timestamp" type="long" />
 <property name="Latitude" column="latitude" type="float" />
 <property name="Longitude" column="longitude" type="float" />
 <property name="Accuracy" column="accuracy" type="float" />
 <property name="Altitude" column="altitude" type="float" />
 <property name="AltitudeAccuracy" column="altitude_accuracy" type="float" />
 <property name="Heading" column="heading" type="float" />
 <property name="Speed" column="speed" type="float" />
 <property name="Tag" column="tag" type="string" />
 </class>
</hibernate-mapping>

這些都是 NHibernate 的常規(guī)做法, 因此不做過多介紹, 不熟悉的可以查閱 NHIbernate 的相關(guān)文檔。

4、 將 xml 文件編譯為嵌入的資源, 打開項(xiàng)目文件 WebApiTest.csproj , 添加一個(gè) ItemGroup 節(jié)點(diǎn):

<ItemGroup>
 <None Remove="Models/*.hbm.xml" />
 <EmbeddedResource Include="Models/*.hbm.xml" />
</ItemGroup>

5、 創(chuàng)建 NHibernate 的配置文件, 并設(shè)置為復(fù)制到輸出目錄:

<?xml version="1.0" encoding="UTF-8"?>
<hibernate-configuration xmlns="urn:nhibernate-configuration-2.2">
 <session-factory>
 <property name="connection.connection_string">server=localhost;database=test_db;user id=postgres;password=postgres;</property>
 <property name="dialect">NHibernate.Dialect.PostgreSQL83Dialect</property>
 <property name="connection.driver_class">NHibernate.Driver.NpgsqlDriver</property>
 <property name="show_sql">true</property>
 <property name="format_sql">true</property>
 <property name="adonet.batch_size">10</property>
 <mapping assembly="NaturalReserveApi" />
 </session-factory>
</hibernate-configuration>

打開項(xiàng)目文件, 添加 ItemGroup 節(jié)點(diǎn), 內(nèi)容如下:

<ItemGroup>
 <Content Update="hibernate.config">
 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
 </Content>
</ItemGroup>

6、 修改 Startup.cs 文件, 將 NHibernate 集成到 .NET Core 內(nèi)置的依賴注入框架中:

6.1、 修改 Startup.cs 的 using 部分, 添加下面的語句:

using Microsoft.Extensions.Logging;
using NHibernate.NetCore;

6.2、 修改 Startup.cs 的構(gòu)造函數(shù), 代碼如下:

public Startup(
 IConfiguration configuration,
 ILoggerFactory factory
) {
 Configuration = configuration;
 // 將內(nèi)置的日志組件設(shè)置為 NHibernate 的日志組件
 factory.UseAsHibernateLoggerFactory();
}

6.3、 修改 ConfigureServices 方法, 添加 NHibernate 相關(guān)的服務(wù):

public void ConfigureServices(IServiceCollection services) {
 // nhibernate 配置文件的路徑
 var path = System.IO.Path.Combine(
  AppDomain.CurrentDomain.BaseDirectory,
  "hibernate.config"
 );
 // 添加 NHibernate 相關(guān)的服務(wù)
 services.AddHibernate(path);
 services.AddMvc()
  .SetCompatibilityVersion(CompatibilityVersion.Version_2_1);
}

7、 修改默認(rèn)的 ValuesController.cs , 注入并使用 NHibernate:

7.1、 修改構(gòu)造函數(shù), 注入 ISessionFactory :

public ValuesController(ISessionFactory factory) {
 this.factory = factory;
}

7.2、 修改 Get 方法, 使用 NHibernate 進(jìn)行查詢:

// GET api/values
[HttpGet]
public ActionResult<IEnumerable<GpsPosition>> Get() {
 using (var session = factory.OpenSession()) {
  var query = session.Query<GpsPosition>();
  return query.ToList();
 }
}

8、 編譯并運(yùn)行:

dotnet run

之后可以看到類似這樣的 NHibernate 初始化信息:

Using launch settings from ~/Projects/WebApiTest/Properties/launchSettings.json...
info: NHibernate.Cfg.Environment[0]
  NHibernate 5.1.3 (assembly 5.1.0.0)
info: NHibernate.Cfg.Environment[0]
  hibernate-configuration section not found in application configuration file
info: NHibernate.Cfg.Environment[0]
  Bytecode provider name : lcg
info: NHibernate.Cfg.Environment[0]
  Using reflection optimizer
dbug: NHibernate.Cfg.Configuration[0]
......
Hosting environment: Development
Content root path: ~/Projects/WebApiTest
Now listening on: https://localhost:5001
Now listening on: http://localhost:5000
Application started. Press Ctrl+C to shut down.

上述就是小編為大家分享的NHibernate如何在.NET Core應(yīng)用中使用了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


文章標(biāo)題:NHibernate如何在.NETCore應(yīng)用中使用-創(chuàng)新互聯(lián)
當(dāng)前地址:http://jinyejixie.com/article16/cchodg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計(jì)營(yíng)銷型網(wǎng)站建設(shè)、外貿(mào)建站、外貿(mào)網(wǎng)站建設(shè)品牌網(wǎng)站制作、品牌網(wǎng)站設(shè)計(jì)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

成都網(wǎng)站建設(shè)
丰宁| 班戈县| 永吉县| 九台市| 乳山市| 弥勒县| 河北区| 通辽市| 孟连| 娱乐| 岐山县| 道孚县| 灵璧县| 阳城县| 博客| 安仁县| 来安县| 神池县| 三台县| 宁津县| 望谟县| 浮山县| 阳信县| 保亭| 社会| 祁阳县| 易门县| 奇台县| 太谷县| 本溪市| 虹口区| 弋阳县| 增城市| 长沙县| 垫江县| 宣威市| 怀化市| 北海市| 武城县| 鄂尔多斯市| 桓台县|