The notsupportedexception tag has no wiki summary.
43
votes
27answers
13k views
NotImplementedException - are they kidding me?
This really, really urks me, so I hope that someone can give me a reasonable justification for why things are as they are.
NotImplementedException. You are pulling my leg, right?
No, I'm not going ...
6
votes
1answer
696 views
NHibernate 3 LINQ inner join issue with three jumps: NotSupportedException
I have a query that used to work in NHibernate LINQ 2.1.2 but it is throwing NotSupportedException with NH3:
IQueryable<Tree> query = from flower in GetSession().Query<Flower>()
...
3
votes
2answers
54 views
How can I use a local collection with Linq-to-SQL?
I read this question which is the same issue I'm having. Unfortunately, the marked solution didn't help. I'm probably misunderstanding something really obvious about LINQ.
I'm trying to do a ...
3
votes
1answer
236 views
EF4.1 multiple nested entity Includes gets NotSupportedException?
Edit: Updated problem description based on testing - 12 Sep 2011.
I have this query that throws a NotSupportedException ("Specified method is not supported.") whenever I call .ToList().
...
3
votes
3answers
258 views
Why does this code generate a NotSupportedException?
Why does this throw System.NotSupportedException?
string foo(string f) { return f; }
string bar = "";
var item = (from f in myEntities.Beer
where f.BeerName == foo(bar)
select ...
3
votes
1answer
1k views
Error: Specified method is not supported?
I keep getting this error when I try to call Find()
public void findTxt(string text)
{
BindingSource src = new BindingSource();
src.DataSource = dataGridView1.DataSource;
...
2
votes
1answer
481 views
Invoke The stream does not support reading
I have a c# network application where alot of anonymous users connect to (game service).
Now I check the logs and occasionally I see this exception:
[10:30:18.21352] System.Int32 Read(Byte[], Int32, ...
2
votes
4answers
2k views
Stream.Length throws NotSupportedException
I am getting a error when attempting stream.Length on a Stream object sent into my WCF method.
Unhandled Exception!
Error ID: 0
Error Code: Unknown
Is Warning: False
Type: ...
1
vote
1answer
72 views
Avoiding NotSupportedException using CreateDirectory in c#
I'm trying to recursively create a bunch of directories and certain directory names have ':' characters in which throws the above exception. I was hoping there may be a way to avoid this?
Below is a ...
1
vote
0answers
109 views
sqlFileStream System.ComponentModel.Win32Exception: The request is not supported
I have SQL server express 2008 SP1 on windows 7 (Version 6.1 Build 7601: Service Pack 1) and visual studio 2010.
I am attempting to create a Stored Procedure CLR for inserting a file into a file ...
1
vote
1answer
343 views
“Specified method is not supported” error with iTextSharp
I'm using iTextSharp to generate PDFs. I've added a test method below that makes a simple page with one paragraph. It works, the PDF is generated, however, sometime after the PDF is sent to the ...
1
vote
2answers
67 views
Entity Framework - NotSupportedException
var depts = ctx.Departments
.OrderBy(d => d.deptName)
.Select(d => d.deptNo);
foreach (int deptNumber in depts) {
var deptReports = from d in ctx.Departments
...
1
vote
2answers
196 views
C#, Is there a better way to verify URL formatting than IsWellFormedUriString?
Is there a better/more accurate/stricter method/way to find out if a URL is properly formatted?
Using:
bool IsGoodUrl = Uri.IsWellFormedUriString(url, UriKind.Absolute);
Doesn't catch ...
1
vote
1answer
308 views
System.NotSupportedException: Can only project the last entity type in the query being translated
I'm using LINQ with an ODATA web service
from tp in TyrePatterns
from t in tp.Tyres
where t.Diameter == 195
select tp
Seems simple enough, right? Tyres is a propery of TyrePatterns. So just to be ...
1
vote
1answer
303 views
NotSupportedException on IQuery's Enumerable when using statelesssession
when trying to use the Enumerable method on a named query, with a Stateless session, as shown in the example at:
http://www.nhforge.org/doc/nh/en/#batch-statelesssession
i am seeing a ...
0
votes
2answers
27 views
Throwing NotSupportedException From Property Getters
I have heard it is inappropriate to throw exceptions from property getters, and I understand the reasons behind this rationale. However, the following situation is puzzling me: Imagine you are writing ...
0
votes
2answers
23 views
.net NotSupportedException while creating file with date
I want to create a file with date.
DateTime time_now = DateTime::UtcNow;
String^ time_str = time_now.UtcNow.ToString();
String^ strPath = "C:\\Users\\Documents\\VS\\MyProject\\" + fileName + ...
0
votes
1answer
148 views
java.lang.UnsupportedOperationException: Blobs are not cacheable
After adding java.sql.Blob field to one of my objects the hibernate persistence manager is now throwing Blobs are not cacheable exception.
Any idea how to solve this other than disabling the cache. ...
0
votes
0answers
202 views
DataSet.ReadXml
We have a 2.0 framework app running on windows CE device with only 3.5 installed. We are getting a NotSupportedException exception when trying to run DataSet.ReadXml. Looking for ideas on how to fix ...
0
votes
0answers
196 views
Upload file to Amazon S3 asynchronously
I'm using the following code to upload a file to amazon s3 but it fails with a notsupportedexception like this:
This stream does not support seek operations.
Description: An unhandled exception ...
0
votes
1answer
324 views
The private key does not support the exchange KeySpec during ADFS2.0 response
Have such a problem
We have claim awared asp.net site and adfs server configured for this site
So, that we have - we launch our web application - moved for authentication to adfs server and move ...
-2
votes
2answers
83 views
Got an error “Not supportedException was unhandled by user code”
I have table
product(table name)
product_id
product_name
product_image
product_price
product_description
category_id
category(table name )
...