เมื่อออกแบบโครงการและวางโครงสร้างฉันเริ่มจากสองทิศทาง ก่อนอื่นฉันดูโครงการที่กำลังออกแบบและกำหนดปัญหาที่จำเป็นต้องแก้ไข ฉันดูคนที่จะใช้มันและเริ่มต้นด้วยการออกแบบ UI ที่หยาบ ณ จุดนี้ฉันไม่สนใจข้อมูลและเพียงแค่ดูว่าผู้ใช้ขออะไรและใครจะใช้งาน
เมื่อฉันมีความเข้าใจพื้นฐานเกี่ยวกับสิ่งที่พวกเขาขอฉันกำหนดว่าข้อมูลหลักคืออะไรพวกเขาจะจัดการและเริ่มต้นเค้าโครงฐานข้อมูลพื้นฐานสำหรับข้อมูลนั้น จากนั้นฉันก็เริ่มถามคำถามเพื่อกำหนดกฎเกณฑ์ทางธุรกิจที่ล้อมรอบข้อมูล
โดยเริ่มต้นจากปลายทั้งสองอย่างอิสระฉันสามารถจัดโครงงานในลักษณะที่ผสมผสานทั้งสองปลายเข้าด้วยกัน ฉันพยายามแยกการออกแบบให้นานที่สุดเท่าที่จะเป็นไปได้ก่อนที่จะรวมมันเข้าด้วยกัน แต่โปรดคำนึงถึงข้อกำหนดของแต่ละอย่างเมื่อฉันเดินหน้าต่อไป
เมื่อฉันมีความเข้าใจที่ดีในแต่ละด้านของปัญหาแล้วฉันก็เริ่มวางโครงสร้างของโครงการที่จะสร้างขึ้นเพื่อแก้ปัญหา
เมื่อเค้าโครงพื้นฐานของโซลูชันโครงการถูกสร้างขึ้นฉันดูที่ฟังก์ชันการทำงานของโครงการและตั้งค่าชุดฐานของเนมสเปซที่ใช้ขึ้นอยู่กับประเภทของงานที่ทำ นี่อาจเป็นสิ่งต่างๆเช่นบัญชีรถเข็นการสำรวจ ฯลฯ
นี่คือเค้าโครงโซลูชันพื้นฐานที่ฉันเริ่มต้นด้วยเสมอ เมื่อโครงการได้รับการกำหนดที่ดีขึ้นฉันปรับแต่งเพื่อตอบสนองความต้องการเฉพาะของแต่ละโครงการ บางพื้นที่อาจถูกรวมเข้ากับพื้นที่อื่นและฉันอาจเพิ่มพื้นที่พิเศษบางอย่างตามต้องการ
SolutionName
.ProjectNameDocuments
For large projects there are certain documents that need to be kept with
it. For this I actually create a separate project or folder within the
solution to hold them.
.ProjectNameUnitTest
Unit testing always depends on the project - sometimes it is just really
basic to catch edge cases and sometimes it is set up for full code
coverage. I have recently added graphical unit testing to the arsenal.
.ProjectNameInstaller
Some projects have specific installation requirements that need to be
handled at a project level.
.ProjectNameClassLibrary
If there is a need for web services, APIs, DLLs or such.
.ProjectNameScripts (**Added 2/29/2012**)
I am adding this because I just found a need for one in my current project.
This project holds the following types of scripts: SQL (Tables, procs,
views), SQL Data update scripts, VBScripts, etc.
.ProjectName
.DataRepository
Contains base data classes and database communication. Sometimes
also hold a directory that contains any SQL procs or other specific
code.
.DataClasses
Contains the base classes, structs, and enums that are used in the
project. These may be related to but not necessarily be connected
to the ones in the data repository.
.Services
Performs all CRUD actions with the Data, done in a way that the
repository can be changed out with no need to rewrite any higher
level code.
.Business
Performs any data calculations or business level data validation,
does most interaction with the Service layer.
.Helpers
I always create a code module that contains helper classes. These
may be extensions on system items, standard validation tools,
regular expressions or custom-built items.
.UserInterface
The user interface is built to display and manipulate the data.
UI Forms always get organized by functional unit namespace with
additional folders for shared forms and custom controls.