Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>This seems to be related to a table column name. Make sure that the columns of your database table have safe names (for example, not the same as the name of a SQL data type name).</p> <p>If you post the table's structure, probably that's going to be obvious.</p> <p>Reference: <a href="http://forums.asp.net/t/1190427.aspx" rel="nofollow">ParseException when adding orderBy attribute to linqdatasource control</a></p> <p><strong>UPDATE</strong></p> <p>In order to solve your issue, rename the <code>GUID</code> property / column.</p> <p>The stack trace, which pointed to </p> <pre><code> BatchExtensions.Delete[TEntity](IQueryable'1 source) </code></pre> <p>and later on to <a href="https://github.com/loresoft/EntityFramework.Extended/blob/master/Source/EntityFramework.Extended/Dynamic/DynamicQueryable.cs" rel="nofollow">this method</a>:</p> <pre><code> public static IQueryable Select(this IQueryable source, string selector, params object[] values) </code></pre> <p>indicates that the exception is raised in the <a href="https://github.com/loresoft/EntityFramework.Extended/tree/master/Source" rel="nofollow">EntityFramework.Extended</a> library.</p> <p>You'll have to avoid naming your properties as one of the following predefined types (case insensitive):</p> <pre><code>static readonly Type[] predefinedTypes = { typeof(Object), typeof(Boolean), typeof(Char), typeof(String), typeof(SByte), typeof(Byte), typeof(Int16), typeof(UInt16), typeof(Int32), typeof(UInt32), typeof(Int64), typeof(UInt64), typeof(Single), typeof(Double), typeof(Decimal), typeof(DateTime), typeof(TimeSpan), typeof(Guid), typeof(Math), typeof(Convert) }; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload