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