Skip to content
| Marketplace
Sign in
Visual Studio>Tools>ME.Extension.NTier
ME.Extension.NTier

ME.Extension.NTier

BugraME

|
25 installs
| (1) | Free
This extension provides options to the context menu for creating essential components for projects working with N-Tier Architecture. The extension includes commands to automatically create Entity, Dto
Download

N-Tier Architecture Visual Studio Extension

This Visual Studio extension provides options within the context menu to create essential components required for projects working with N-Tier Architecture. You can select "Create Dto", "Create Repository", or "Create Service" from the menu to automatically generate the items.

Installation

  1. Download VSIX File: Download the latest version from the Visual Studio Marketplace page.
  2. Install: Double-click the downloaded ".vsix" file to install it in Visual Studio.
  3. Restart Visual Studio: Restart Visual Studio for the changes to take effect.

Usage

ME Extension NTier
  1. Create Item from Entity:
    • Right-click on a model in the Solution Explorer.
    • Select Add > New Item.
    • In the opened window, select Create Dto, Create Repository, or Create Service.
    • In the displayed form, enter the project name and folder name for the created file and click Add.

  2. Entity Example:
  3. public class Product : BaseEntity {
    public string Name { get; set; }
    public decimal Price { get; set; }
    }

  4. Examples Derived from Entity:
    • Dto Example:
    • public class ProductDto : BaseDto {
          public string Name { get; set; }
          public decimal Price { get; set; }
      }
    • Repository Example:
    • public class ProductRepository : BaseRepository<Product> {
          public ProductRepository() { }
      }
    • ServiceHelper Example:
    • public class ProductService : BaseService<ProductRepository, ProductDto, Product> {
          public ProductService() { }
      }
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft