TrackableEntities.Core | Change-tracking across service boundaries with .NET Core
kandi X-RAY | TrackableEntities.Core Summary
kandi X-RAY | TrackableEntities.Core Summary
TrackableEntities.Core is a C# library. TrackableEntities.Core has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support. You can download it from GitHub.
Trackable Entities allows you to mark client-side entities as Added, Modified or Deleted, so that entire object graphs can be sent to a service where changes can be saved with a single round trip to the server and within a single transaction.
Trackable Entities allows you to mark client-side entities as Added, Modified or Deleted, so that entire object graphs can be sent to a service where changes can be saved with a single round trip to the server and within a single transaction.
Support
Quality
Security
License
Reuse
Support
TrackableEntities.Core has a low active ecosystem.
It has 60 star(s) with 11 fork(s). There are 8 watchers for this library.
It had no major release in the last 12 months.
There are 1 open issues and 20 have been closed. On average issues are closed in 361 days. There are no pull requests.
It has a neutral sentiment in the developer community.
The latest version of TrackableEntities.Core is v6.0.0
Quality
TrackableEntities.Core has 0 bugs and 0 code smells.
Security
TrackableEntities.Core has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
TrackableEntities.Core code analysis shows 0 unresolved vulnerabilities.
There are 0 security hotspots that need review.
License
TrackableEntities.Core is licensed under the MIT License. This license is Permissive.
Permissive licenses have the least restrictions, and you can use them in most projects.
Reuse
TrackableEntities.Core releases are available to install and integrate.
Installation instructions, examples and code snippets are available.
Top functions reviewed by kandi - BETA
kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of TrackableEntities.Core
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of TrackableEntities.Core
TrackableEntities.Core Key Features
No Key Features are available at this moment for TrackableEntities.Core.
TrackableEntities.Core Examples and Code Snippets
public class Product : ITrackable, IMergeable
{
public int ProductId { get; set; }
public string ProductName { get; set; }
public decimal? UnitPrice { get; set; }
[NotMapped]
public TrackingState TrackingState { get; set; }
// Set state to added
order.TrackingState = TrackingState.Added;
// Apply changes to context
_context.ApplyChanges(order);
// Persist changes
await _context.SaveChangesAsync();
// Populate reference properties
await _context.LoadRelatedEntitiesAsy
install-package TrackableEntities.EF.Core
dotnet add package TrackableEntities.EF.Core
Community Discussions
No Community Discussions are available at this moment for TrackableEntities.Core.Refer to stack overflow page for discussions.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install TrackableEntities.Core
Trackable Entities for EF Core is available as a NuGet package that can be installed in an ASP.NET Core Web API project that uses Entity Framework Core. You can use the Package Manager UI or Console in Visual Studio to install the TE package. You can also use the .NET Core CLI to install the TE package.
Support
If you have any questions about Trackable Entities, would like to request features, or discover any bugs, please create an issue on the GitHub repository. If you wish to contribute to Trackable Entities, pull requests are welcome!.
Find more information at:
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page