The notsupportedexception tag has no wiki summary.
0
votes
1answer
85 views
LINQ “equals” operator on nullable foreign key in NHibernate parent/child relationships
The background
My model looks like the following: (writing fields instead of properties for simplicity)
public class Entity {
public long Id;
public string Name;
public Entity Parent;
}
...
0
votes
2answers
283 views
Create a BitmapImage from a byte array
I am creating a byte array with arbitrary values in it and want to convert it into a BitmapImage.
bi = new BitmapImage();
using (MemoryStream stream = new MemoryStream(data))
{
try
...
0
votes
1answer
94 views
NotSupportedException - Membership.GetAllUsers
My code is fairly simple.
var member = Membership.GetAllUsers();
It throws "NotSupportedExpcetion" when this line is executed. I am trying to retrieve a list of users and populate on the web ui. ...
0
votes
1answer
42 views
Is there a work arround on this code that generates a NotSupportedException from NHibernate?
The following is the code:
list = query.Where(x => ((string)x.GetType()
.GetProperty(propertyName).GetValue(this, null))
.EndsWith(filterValue)).ToList();
This code is a refactored ...
0
votes
1answer
56 views
VB.NET “not supported Exception”?
Dose anybody know how i can get around this “not supported Exception”?
'Amends label2 to file name as text (works in conjunction with PART 00-AB form1)...
Label2.Text = "Project: " & ...
0
votes
1answer
70 views
NotSupportedException on OracleDataAdapter.SafeMapping After Migrating to Managed ODP.NET
I recently migrated my code from the native version of ODP.NET to the managed version, and all of a sudden, accessing the SafeMapping property on OracleDataAdapter gives the following exception:
...
0
votes
0answers
93 views
NHibernate + Mysql - System.NotSupportedException: Multiple simultaneous connections
I developed a whole project using NHibernate and MySQL. Everything was gone be all right in development and test environment's.
When I publish my Web Application, a lot of error came up. The last (I ...
2
votes
3answers
2k views
LINQ Lambda, Group by with list
I'm having some trouble with finding the right syntax to accomplish the following:
Is it possible with LINQ (Lambda Expression) to .GroupBy data and instead of using the usual .Sum() or .Count() I ...
3
votes
1answer
270 views
When to use InvalidOperationException or NotSupportedException?
I am implementing a custom collection implementation that can either be readonly or non-readonly; that is, all the methods that change the collection call a function that is the moral equivalent of:
...
0
votes
1answer
157 views
Entity Framework “Empty insert statement”
I am using entity framework code first with dotConnect for MySQL.
I get the following error when I call context.SaveChanges() after adding an object to the context:
DbUpdateException:
An error ...
0
votes
2answers
367 views
Unable to create CryptoStream to read from - System.NotSupportedException
There is really simple code to decrypt file (triple des encryption):
FileStream fin = new FileStream(FilePath, FileMode.Open, FileAccess.Read);
TripleDES tdes = new ...
0
votes
0answers
132 views
enabling callback in c# asp TemplateFields
In a (c# asp.net) gridview with a templateField you will get the following error if you have EnableSortingAndPagingCallbacks set to true:
"Callbacks are not supported on TemplateField because some ...
0
votes
1answer
398 views
Why can't I call BuildSessionFactory since the update from NHibernate 2 to 3.3.1?
Today I updated my project to NHibernate 3.3 and replaced the NHibernate and the Iesi.Collections References.
I kept NHibernate.ByteCode.Castle
I removed the line
<property ...
2
votes
1answer
159 views
NHibernate Overcoming NotSupportedException
Does anyone know of any way to overcome NotSupportedException? I have a method against a User:
public virtual bool IsAbove(User otherUser)
{
return ...
1
vote
2answers
828 views
Exception “Specified method is not supported.” being thrown from NHibernate IQueryable expression when using .Any extension
Utilizing NHibernate I am attempting to use a lambda expression to retrieve objects based on the status and values between a parent child relationship. AbstractWorkflowRequestInformation has a ...
0
votes
3answers
686 views
Unsupported GLSL Shaders
for a class I have to use Java, jogl and lwjgl.
We were given some code and now i am trying to run this code, however i get the error:
" GLSL 3.30 is not supported. Supported versions are: 1.00 ES, ...
0
votes
1answer
92 views
NotSupportedException on generic collection when garbage collector calls clear() (CF 3.5)
First thing: This is a compact framework 3.5 application.
I have a very weird problem. In a Dispose-Method the application disposes items in a collection and after that clears the list. So far ...
1
vote
1answer
338 views
mixing c# functions with Linq-To-SQL conditions
I am having trouble mixing c# functions with conditions in Linq-To-SQL
suppose i have a database table "things" and a local c# Function : bool isGood(thing, params)
I want to use that function to ...
1
vote
1answer
167 views
C# LINQ to Entities Select String confusion NotSupportedException
Hi I have this LINQ and in my DB there is a row ind kalk table with MedID="---" and KalkID="00057" and if i hard code them in everything works but if i get them from my stVar which is a String[] i get ...
0
votes
1answer
251 views
How do I SubmitChanges on multiple tables that are related in LinqToSql?
I'm making a Windows Phone 7.1 application, and I'm having a lot of trouble submitting changes to my database. Here is the structure of the tables in my database:
Day <-1-----*-> TrainingSession ...
0
votes
2answers
81 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
89 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 + ...
3
votes
2answers
147 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 ...
0
votes
1answer
718 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. ...
1
vote
1answer
340 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
288 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 ...
5
votes
1answer
542 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().
...
-2
votes
2answers
493 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 )
...
0
votes
0answers
545 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 ...
4
votes
1answer
947 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
142 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
...
3
votes
2answers
2k 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 ...
0
votes
1answer
830 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
1answer
2k 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, ...
6
votes
2answers
1k 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>()
...
1
vote
1answer
516 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 ...
4
votes
5answers
6k 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: ...
3
votes
3answers
388 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 ...
1
vote
1answer
468 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 ...
3
votes
1answer
4k 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;
...
59
votes
27answers
21k views
Why does NotImplementedException exist? [closed]
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 ...
