• Stars
    star
    120
  • Rank 294,612 (Top 6 %)
  • Language
    C#
  • License
    MIT License
  • Created about 10 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

N-Tier Support for Entity Framework with WCF or ASP.NET Web API

Trackable Entities

N-Tier Support for Entity Framework with WCF or ASP.NET Web API

trackable-entities-ci MyGet Build Status

Join the chat at https://gitter.im/TrackableEntities/trackable-entities

Welcome to the Trackable Entities GitHub Repository!

To get started with Trackable Entities please visit the project home page: http://trackableentities.github.io. There you will find:

  • Installation instructions
  • Getting started videos
  • Samples to download
  • Debugging information
  • Conribution guidelines

Trackable Entities supports tracking changes to entities in an object graph, so that they can be sent to a web service and persisted in a single round trip and within a single transaction. This functionality is provided as a set of NuGet packages.

The server-side NuGet packages provide an ApplyChanges extension method to Entity Framework's DbContext class, which traverses one or more object graphs, informing Entity Framework of each entity's change state. After calling SaveChanges, you can then call AcceptChanges to set the state of all entities to Unchanged before returning them to the client. There is also a LoadRelatedEntities method which you can call to populate reference properties on added entities.

The client-side packages provide a change-tracker for marking entities as Added, Modified or Deleted whenever they are inserted, modified or removed at any level in an object graph. To start tracking changes, simply add one or more entities to a ChangeTrackingCollection and set the Tracking property to true. When you want to persist changes, you can call GetChanges on the change tracker to get only changed items, so that unchanged entities need not be sent to the server, saving bandwidth and increasing performance. Trackable Entities will correlate entities so that you can merge updated entities back into the original object graph by calling MergeChanges. While you can certainly set TrackingState on entities manually, the change tracker is deployed as a portable class library, so you can use it from any .NET client, including desktop or mobile applications.

While you can use the NuGet packages by themselves, Trackable Entities provides a powerful Visual Studio extension, which you can install from within Visual Studio 2012, 2013 or 2015, by selecting Extensions and Updates from the Tools menu and searching for "Trackable Entities" in the Visual Studio online extensions gallery.

After installing the VS extension, you will be able to add a Trackable Entities Class Library to an existing solution, selecting the kind of entities you wish to create: Service, Client or Shared (.NET 4.5 or Portable). The resulting project will include customizable T4 templates for generating entity classes from an Entity Framework data model (EDMX or Code First).

Trackable Entities also provides several Visual Studio multi-project templates which include all the projects needed to build a complete n-tier solution with end-to-end change tracking. All the NuGet packages are present and inter-project references are correctly set. This allows you to see how all the pieces fit together and can be a huge time-saver when you want to get up and running quickly. To build an n-tier solution with Trackable Entities and Entity Framework, you can choose from the following Visual Studio project templates, which you will see under the Trackable category in the New Project dialog:

  • Trackable WCF Service Application
  • Trackable Web API Application
  • Trackable Web API Application with Repository and Unit of Work

You will then find a number of Visual Studio item templates to add WCF services, Web API controllers, and repository or unit of work classes. The template for repository and unit of work patterns will install NuGet packages which include generic base classes for these patterns as well as bootstrap code for wiring up a dependency injection framework.

If you have questions, comments or bugs to report, please open an issue on the Trackable Entities GitHub repository. You may also contact me directly. Enjoy!

Tony Sneed

More Repositories

1

EntityFrameworkCore.Scaffolding.Handlebars

Scaffold EF Core models using Handlebars templates.
C#
210
star
2

TrackableEntities.Core

Change-tracking across service boundaries with .NET Core.
C#
72
star
3

trackable-entities-js

Base classes that track change state when properties are updated and objects are added or removed objects from collections.
TypeScript
11
star
4

TrackableEntities.Core.Sample

Sample solution using Trackable Entities with ASP.NET Core and Entity Framework Core
C#
10
star
5

AspNetCore.ApiControllers.Templates

Customizable Razor templates for ASP.NET Core Web API controllers
HTML
7
star
6

observable-entities-js

Base classes that notify observers when properties are updated and objects are added or removed from collections.
TypeScript
6
star
7

ef-core-community-handlebars

Demos for July 2020 EF Core Community Standup
C#
4
star
8

northwind-slim

Northwind sample database with some modifications
4
star
9

CodingGuidelines.CSharp

C# Style Guide
2
star
10

TrackableEntities.Core.Sample.XPlat

Cross-platform sample for Trackable Entities with ASP.NET Core and Entity Framework Core with SQLite.
C#
2
star
11

NorthwindSlim

NorthwindSlim sample database
1
star
12

trackable-entities-js-sample

Sample app for trackable-entities-js
TypeScript
1
star
13

TrackableEntities.Core.Templates

Handlebars templates for EF Core scaffolding to generate trackable entities
HTML
1
star
14

observable-entities-js-sample

Sample app for observable-entities-js
TypeScript
1
star
15

ObservableEntities.Core.Templates.TypeScript

Handlebars templates for EF Core scaffolding to generate client-side TypeScript observable entities.
HTML
1
star
16

TrackableEntities.Express.Home

TrackableEntities.Express is a re-write of the Trackable Entities project that includes both C# and JavaScript client and server libraries with support for EF7 (Entity Framework for .NET Core) and possibly some NoSQL persistence frameworks.
1
star