-
-
Notifications
You must be signed in to change notification settings - Fork 231
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New features #117
New features #117
Conversation
jogibear9988
commented
Nov 9, 2017
•
edited
Loading
edited
- Configuration for Expression Parsing
- new for named Types
Codecov Report
@@ Coverage Diff @@
## master #117 +/- ##
==========================================
- Coverage 83.66% 83.03% -0.63%
==========================================
Files 26 27 +1
Lines 3275 3331 +56
Branches 484 489 +5
==========================================
+ Hits 2740 2766 +26
- Misses 395 433 +38
+ Partials 140 132 -8
Continue to review full report at Codecov.
|
Is this patch mergeable? |
Whats the difference between this and |
…n you use a real expression
That GlobalConfig is static! If I use dynamiclinq within different assemblies, I can not have a different configuration! |
@StefH any comments to this commit? |
I did add a small comment in GetTypeInfo. And I still need to review more code in this patch. |
do I need to fix smth? |
smth? |
something? |
You can fix my comment on |
I do not find it! |
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.
See comment
propertyInfos = propertyInfos.Where(x => x.Name != "Item"); | ||
} | ||
#elif NETSTANDARD | ||
if (type.GetTypeInfo().BaseType == typeof(DynamicClass)) |
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.
I think you can use type.GetTypeInfo().BaseType
for all frameworks, so no need for an if-elif structure.
Sorry. Please check again. |
look at https://msdn.microsoft.com/de-de/library/system.reflection.ireflectabletype.gettypeinfo(v=vs.110).aspx |
And you still compile for net 4.0 so it is needed |
Codecov Report
@@ Coverage Diff @@
## master #117 +/- ##
==========================================
- Coverage 83.66% 83.04% -0.63%
==========================================
Files 26 27 +1
Lines 3275 3332 +57
Branches 484 490 +6
==========================================
+ Hits 2740 2767 +27
- Misses 395 432 +37
+ Partials 140 133 -7
Continue to review full report at Codecov.
|
could you create a new nuget? |
I found an error :
_parsingConfig is never assigned a value I'm fixing this now. |
Uploaded new NuGet |