Skip to content

Commit

Permalink
made public DefaultCRUDRepository constructor. RTM.
Browse files Browse the repository at this point in the history
  • Loading branch information
frankabbruzzese committed Nov 1, 2016
1 parent cdf2fcc commit a72c1b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public class DefaultCRUDRepository<D,T>: DefaultCRUDRepository, ICRUDRepository
public Expression<Func<T, bool>> SelectFilter { get; private set; }
private string keyName;
private ChangeSet lastChangeSet;
internal DefaultCRUDRepository(D dbContext, DbSet<T> table, Expression<Func<T, bool>> accessFilter=null, Expression<Func<T, bool>> selectFilter = null)
public DefaultCRUDRepository(D dbContext, DbSet<T> table, Expression<Func<T, bool>> accessFilter=null, Expression<Func<T, bool>> selectFilter = null)
{
Context = dbContext;
Table = table;
Expand Down
2 changes: 1 addition & 1 deletion src/MvcControlsToolkit.Core.Business/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"description": "Data annotations, database utilities, and utility types for the Mvc Controls Toolkit that do not depend on Asp.net core.",
"title": "Mvc Controls Toolkit business Layer tools",
"copyright": "Mvc Controls Toolkit Team",
"version": "1.1.2",
"version": "1.1.3",
"authors": [ "Francesco Abbruzzese", "Mvc Controls Toolkit Team" ],
"packOptions": {
"projectUrl": "https://github.com/MvcControlsToolkit/MvcControlsToolkit.Core",
Expand Down
4 changes: 2 additions & 2 deletions src/MvcControlsToolkit.Core/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.1",
"Microsoft.AspNetCore.Mvc.Localization": "1.0.1",
"Microsoft.AspNetCore.Html.Abstractions": "1.0.0",
"MvcControlsToolkit.Core.Business": "1.1.2",
"MvcControlsToolkit.Core.Business": "1.1.3",
"MvcControlsToolkit.Core.Options": "1.0.1"
},
"description": "Core feature of Mvc Controls Toolkit.",
Expand Down Expand Up @@ -50,5 +50,5 @@

},
"title": "Mvc Controls Toolkit core code",
"version": "1.1.2"
"version": "1.1.3"
}

0 comments on commit a72c1b5

Please sign in to comment.