随笔分类 -  架构设计

程序的架构设计学习
摘要:sql: --dbo.BillingDetails --BillingDetailId int identity --Owner --Number --BankName --Swift --CardType int --ExpiryMonth --ExpiryYear --Discriminator 阅读全文
posted @ 2023-01-26 20:38 ®Geovin Du Dream Park™ 阅读(47) 评论(0) 推荐(0)
摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Geovin.Du.DuLazyLoad.DuG 阅读全文
posted @ 2023-01-24 16:47 ®Geovin Du Dream Park™ 阅读(16) 评论(0) 推荐(0)
摘要:sql script: --查询lukfookhr 的所有表 exec sp_configure 'show advanced options',1 reconfigure exec sp_configure 'Ad Hoc Distributed Queries',1 reconfigure SE 阅读全文
posted @ 2022-07-14 16:46 ®Geovin Du Dream Park™ 阅读(33) 评论(0) 推荐(0)
摘要:sql: /*create database geovindu go use geovindu; go */ --基础数据设置BasicDataSet --书分类目录kind --BookKindForm IF EXISTS (select * from sysobjects where id = 阅读全文
posted @ 2021-12-27 17:05 ®Geovin Du Dream Park™ 阅读(49) 评论(0) 推荐(0)
摘要:sql script: drop table BookKindList; #书目录 create table BookKindList ( BookKindID INT NOT NULL AUTO_INCREMENT, #自动增加 BookKindName nvarchar(500) not nul 阅读全文
posted @ 2021-12-20 16:56 ®Geovin Du Dream Park™ 阅读(68) 评论(0) 推荐(0)
摘要:https://github.com/fabriciorissetto/CustomActivator https://www.codeproject.com/Articles/55710/Reflection-in-NET https://www.codeproject.com/Articles/ 阅读全文
posted @ 2018-05-07 15:53 ®Geovin Du Dream Park™ 阅读(571) 评论(1) 推荐(0)
摘要:sql: CREATE TABLE [PotoUsers] ( [UserID] INT IDENTITY(1,1) PRIMARY KEY, [UserName] NVARCHAR(50), [FirstName] NVARCHAR(50), [LastName] NVARCHAR(50), [M 阅读全文
posted @ 2018-02-12 17:43 ®Geovin Du Dream Park™ 阅读(980) 评论(0) 推荐(0)
摘要:Domain: FluentNhibernateLocalSessionFactoryObject.cs Dao:dataAccess.xml NHibernate 配置 Dao:objects.xml Service:objects.xml FluentNHibernateSpingNetDemo 阅读全文
posted @ 2017-06-26 10:12 ®Geovin Du Dream Park™ 阅读(584) 评论(0) 推荐(0)
摘要:sql script code: DAL: DAO: 阅读全文
posted @ 2016-07-04 11:28 ®Geovin Du Dream Park™ 阅读(448) 评论(0) 推荐(0)
摘要:GetNamedQuery: 存储过程 DBHelper.cs 阅读全文
posted @ 2016-07-01 17:27 ®Geovin Du Dream Park™ 阅读(803) 评论(0) 推荐(1)
摘要:http://dddsample.sourceforge.net/ https://github.com/citerus/dddsample-core http://dddsamplenet.codeplex.com/SourceControl/latest https://github.com/V 阅读全文
posted @ 2016-06-27 12:06 ®Geovin Du Dream Park™ 阅读(395) 评论(0) 推荐(0)
摘要:https://github.com/subsonic/SubSonic-3.0 http://subsonic.codeplex.com/ https://code.google.com/archive/p/subsonicvn/downloads https://subsonicvn.googl 阅读全文
posted @ 2016-05-19 11:26 ®Geovin Du Dream Park™ 阅读(957) 评论(0) 推荐(0)
摘要:http://blog.bennymichielsen.be/2009/01/04/using-fluent-nhibernate-in-spring-net/ http://comments.gmane.org/gmane.comp.windows.dotnet.nhibernate.user.g 阅读全文
posted @ 2016-04-21 17:35 ®Geovin Du Dream Park™ 阅读(496) 评论(0) 推荐(0)
摘要:http://codeofrob.com/entries/sqlite-csharp-and-nhibernate.html https://code.google.com/archive/p/csharp-sqlite/downloads https://github.com/davybrion/ 阅读全文
posted @ 2016-03-31 23:34 ®Geovin Du Dream Park™ 阅读(880) 评论(0) 推荐(0)
摘要:sql:存储过程 参考:http://stackoverflow.com/questions/6373110/nhibernate-use-stored-procedure-or-mapping 阅读全文
posted @ 2016-03-29 23:37 ®Geovin Du Dream Park™ 阅读(436) 评论(0) 推荐(0)
摘要:测试用的当前最新版本: sql: Entities (Model) Mapping: 各关联主键外键表设计参考: http://www.codeproject.com/Articles/232034/Inheritance-mapping-strategies-in-Fluent-Nhibernat 阅读全文
posted @ 2016-03-28 21:22 ®Geovin Du Dream Park™ 阅读(363) 评论(0) 推荐(0)
摘要:http://www.codeproject.com/Articles/26466/Dependency-Injection-using-Spring-NET http://stackoverflow.com/questions/29767825/spring-netnhibernate-confi 阅读全文
posted @ 2016-03-27 15:15 ®Geovin Du Dream Park™ 阅读(435) 评论(0) 推荐(0)
摘要:代码生成器: 1. http://www.codesmithtools.com/ 2.https://sourceforge.net/projects/mygeneration/ 3. http://nmg.codeplex.com/ NHibernate Mapping Generator htt 阅读全文
posted @ 2016-02-29 15:28 ®Geovin Du Dream Park™ 阅读(977) 评论(1) 推荐(0)
摘要:You can find Dapper on Google Code here: http://code.google.com/p/dapper-dot-net/ and the GitHub distro here: https://github.com/SamSaffron/dapper-dot 阅读全文
posted @ 2015-07-26 02:21 ®Geovin Du Dream Park™ 阅读(720) 评论(0) 推荐(0)