This repository has been archived by the owner on Dec 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Limit [FromServices] to apply only to parameters #3568
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -268,9 +268,6 @@ private class Order2 | |
private class Person2 | ||
{ | ||
public string Name { get; set; } | ||
|
||
[FromServices] | ||
public IActionBindingContextAccessor BindingContext { get; set; } | ||
} | ||
|
||
[Fact] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This test isn't valid any more. This should be updated to use |
||
|
@@ -301,7 +298,6 @@ public async Task MutableObjectModelBinder_BindsNestedPOCO_WithServicesModelBind | |
var model = Assert.IsType<Order2>(modelBindingResult.Model); | ||
Assert.NotNull(model.Customer); | ||
Assert.Equal("bill", model.Customer.Name); | ||
Assert.NotNull(model.Customer.BindingContext); | ||
|
||
Assert.Equal(1, modelState.Count); | ||
Assert.Equal(0, modelState.ErrorCount); | ||
|
@@ -340,7 +336,6 @@ public async Task MutableObjectModelBinder_BindsNestedPOCO_WithServicesModelBind | |
var model = Assert.IsType<Order2>(modelBindingResult.Model); | ||
Assert.NotNull(model.Customer); | ||
Assert.Equal("bill", model.Customer.Name); | ||
Assert.NotNull(model.Customer.BindingContext); | ||
|
||
Assert.Equal(1, modelState.Count); | ||
Assert.Equal(0, modelState.ErrorCount); | ||
|
@@ -1489,9 +1484,6 @@ private class Person9 | |
{ | ||
[FromBody] | ||
public Address1 Address { get; set; } | ||
|
||
[FromServices] | ||
public IActionBindingContextAccessor BindingContext { get; set; } | ||
} | ||
|
||
// If a nested POCO object has all properties bound from a greedy source, then it should be populated | ||
|
@@ -1524,7 +1516,6 @@ public async Task MutableObjectModelBinder_BindsNestedPOCO_WithAllGreedyBoundPro | |
|
||
var model = Assert.IsType<Order9>(modelBindingResult.Model); | ||
Assert.NotNull(model.Customer); | ||
Assert.NotNull(model.Customer.BindingContext); | ||
Assert.NotNull(model.Customer.Address); | ||
Assert.Equal(AddressStreetContent, model.Customer.Address.Street); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why kill the example?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Property injection doesn't work any more. The other example talks about parameter injection and I've left that alone.