Skip to content
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

Changed the internally used System.Linq.Dynamic namespace #148

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Data.Entity.Core.EntityClient;
using System.Data.Entity.Core.Objects;
using System.Linq;
using System.Linq.Dynamic;
using EntityFramework.DynamicLinq;
using System.Linq.Expressions;
using System.Text;
using System.Text.RegularExpressions;
Expand Down
6 changes: 5 additions & 1 deletion Source/EntityFramework.Extended/Dynamic/DynamicQueryable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
using System.Reflection.Emit;
using System.Threading;

namespace System.Linq.Dynamic
//Given the strongname debate, it's unlikely that the nuget System.Linq.Dynamic will be strong named, and as this library is, we can't
//use that nuget package. Because of this, prefixing the normal System.Linq.Dynamic Namespace avoids conflicts with
//the package in projects that use both EF.Extended and System.Linq.Dynamic. If/When this is no longer strong named, or If/When
//System.Dynamic.Linq nuget package IS strong named, then this class could be removed, and would just use nuget.
namespace EntityFramework.DynamicLinq //System.Linq.Dynamic
{
public static class DynamicQueryable
{
Expand Down