As a part of coding convention, we need to follow the convention for U dịch - As a part of coding convention, we need to follow the convention for U Việt làm thế nào để nói

As a part of coding convention, we

As a part of coding convention, we need to follow the convention for Unity Injection of WCF DB/DMS Access as below:
1. Define a private variable to handle repository. Name of this variable should be consisted of 2 parts:
a. Begin of variable’s name should be a “_” character.
b. Next part of variable’s name should be name of interface excluding “I” letter. It uses lower Camel Case standard.
Ex: private IDBNodeGroupRepository _dbNodeGroupRepository;

2. Define a public Func property to inject repository. Name of this property should be:
a. Begin of property’s name should be “Get”.
b. Next part of property’s name should be name of interface excluding “I” letter. It uses Pascal Case standard.
Ex: public Func GetDBNodeGroupRepository { get; set; }

3. Define a protected get property to get repository. All functions access to DB/DMS service must be called from this property.
a. Name of property should be name of interface excluding “I” letter. It uses Pascal Case standard.
Ex: public IDBNodeGroupRepository DBNodeGroupRepository

Example of NodeGroup core object:

#region NodeGroup Repository
private IDBNodeGroupRepository _dbNodeGroupRepository;
public Func GetDBNodeGroupRepository { get; set; }
public IDBNodeGroupRepository DBNodeGroupRepository
{
get
{
if (_dbNodeGroupRepository == null && GetDBNodeGroupRepository != null)
{
_dbNodeGroupRepository = GetDBNodeGroupRepository();
}

return _dbNodeGroupRepository;
}
}
#endregion NodeGroup Repository

Calling DB service:
public void DeleteDb()
{
foreach (NodeGroup nodegroup in this.NodeGroups)
{
nodegroup.DeleteDb();
}

DBNodeGroupRepository.Delete(this.DataModel.NodeGroupKey);
}

The same convention for WCF DMS Access.
0/5000
Từ: -
Sang: -
Kết quả (Việt) 1: [Sao chép]
Sao chép!
Như là một phần của mã hóa công ước, chúng ta cần phải thực hiện theo quy ước cho tiêm truy cập DB/DMS WCF của Unity như dưới đây:1. định nghĩa một biến tư nhân để xử lý các kho lưu trữ. Tên của biến này nên được bao gồm 2 phần:a. bắt đầu tên của biến nên là một nhân vật "_".sinh một phần kế tiếp của biến tên nên tên của giao diện không bao gồm chữ cái "Tôi". Nó sử dụng tiêu chuẩn Camel trường hợp thấp hơn.Ví dụ: tư nhân IDBNodeGroupRepository _dbNodeGroupRepository;2. xác định một tài sản Func công cộng để tiêm kho. Tên của tài sản này phải:a. bắt đầu của tên của thuộc tính nên là "Nhận".sinh sau một phần của tên của thuộc tính nên là tên của giao diện không bao gồm chữ cái "Tôi". Nó sử dụng tiêu chuẩn Pascal Case.Ví dụ: khu vực Func GetDBNodeGroupRepository {get; thiết lập;}3. xác định một tài sản được bảo vệ có được để có được các kho lưu trữ. Tất cả chức năng truy cập vào DB/DMS dịch vụ phải được gọi từ bất động sản này.a. tên của bất động sản nên là tên của giao diện không bao gồm chữ cái "Tôi". Nó sử dụng tiêu chuẩn Pascal Case.Ví dụ: công IDBNodeGroupRepository DBNodeGroupRepositoryVí dụ của NodeGroup lõi đối tượng:kho lưu trữ NodeGroup #regiontư nhân IDBNodeGroupRepository _dbNodeGroupRepository;khu vực Func GetDBNodeGroupRepository {get; thiết lập;}công IDBNodeGroupRepository DBNodeGroupRepository{ nhận được { Nếu (_dbNodeGroupRepository == null & & GetDBNodeGroupRepository! = null) { _dbNodeGroupRepository = GetDBNodeGroupRepository(); } return _dbNodeGroupRepository; }}#endregion NodeGroup RepositoryCalling DB service:public void DeleteDb(){ foreach (NodeGroup nodegroup in this.NodeGroups) { nodegroup.DeleteDb(); } DBNodeGroupRepository.Delete(this.DataModel.NodeGroupKey);}The same convention for WCF DMS Access.
đang được dịch, vui lòng đợi..
 
Các ngôn ngữ khác
Hỗ trợ công cụ dịch thuật: Albania, Amharic, Anh, Armenia, Azerbaijan, Ba Lan, Ba Tư, Bantu, Basque, Belarus, Bengal, Bosnia, Bulgaria, Bồ Đào Nha, Catalan, Cebuano, Chichewa, Corsi, Creole (Haiti), Croatia, Do Thái, Estonia, Filipino, Frisia, Gael Scotland, Galicia, George, Gujarat, Hausa, Hawaii, Hindi, Hmong, Hungary, Hy Lạp, Hà Lan, Hà Lan (Nam Phi), Hàn, Iceland, Igbo, Ireland, Java, Kannada, Kazakh, Khmer, Kinyarwanda, Klingon, Kurd, Kyrgyz, Latinh, Latvia, Litva, Luxembourg, Lào, Macedonia, Malagasy, Malayalam, Malta, Maori, Marathi, Myanmar, Mã Lai, Mông Cổ, Na Uy, Nepal, Nga, Nhật, Odia (Oriya), Pashto, Pháp, Phát hiện ngôn ngữ, Phần Lan, Punjab, Quốc tế ngữ, Rumani, Samoa, Serbia, Sesotho, Shona, Sindhi, Sinhala, Slovak, Slovenia, Somali, Sunda, Swahili, Séc, Tajik, Tamil, Tatar, Telugu, Thái, Thổ Nhĩ Kỳ, Thụy Điển, Tiếng Indonesia, Tiếng Ý, Trung, Trung (Phồn thể), Turkmen, Tây Ban Nha, Ukraina, Urdu, Uyghur, Uzbek, Việt, Xứ Wales, Yiddish, Yoruba, Zulu, Đan Mạch, Đức, Ả Rập, dịch ngôn ngữ.

Copyright ©2024 I Love Translation. All reserved.

E-mail: