Hi,
with the latest version, what are the unsupported types?
Could you provide here a list of those unsupported types, and the .NET they
should be mapped to?
I'll then make the fix.

Pascal.

On Thu, Aug 7, 2008 at 14:35, <[EMAIL PROTECTED]> wrote:

>
> Hello,
> I just started with Linq and discovered your project. Looks really
> great and would save me a LOT of work. There is some minor problem, my
> databse has a lot of stupid fields like:
>
> tinytext
> mediumblob
>
> and so on....
> Now i have to ways, first would be to dump the database, replace the
> "tinytext" with a real text field, and run the metal again. The other
> way would be a mapping of tinytext to string (I assume currently the
> implentation does not recognize the "exotic" types).
>
> Could you give me a hint where to "upgrade" the parser (which file,
> around wich line)... I cant search for words like "string" in the
> souce code (for obvious reasons :-) If you think this approach is
> totally unrealistic, let me know, then i try to alter the DB. But I am
> not sure how Typo3 will like it, so to change the "parser?" ist my
> favored approach.
>
> Christian
>
> PS: The problem currently are code lines like this. Perhaps there
> already is a solution and i just did not include some switch, but
> Visual Studio complains about lines like: (The string is missing at
> three places, see XXXX)
>
> #region XXXX Title
>
>                private XXXX title;
>                [DebuggerNonUserCode]
>                [Column(Storage = "title", Name = "title", DbType =
> "tinytext",
> CanBeNull = false, Expression = null)]
>                public XXXX Title
>                {
>                        get
>                        {
>                                return title;
>                        }
>                        set
>                        {
>                                if (value != title)
>                                {
>                                        title = value;
>                                        OnPropertyChanged("Title");
>                                }
>                        }
>                }
>
>                #endregion
>
> >
>


-- 
Pascal.

jabber/gtalk: [EMAIL PROTECTED]
msn: [EMAIL PROTECTED]

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"DbLinq" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/dblinq?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to