nemerle

Nullable Integer ? (working with linq)

I've got exception about convert NULL to Int32. I've got a table from database with nullable tinyint [Column(Storage="_StatType", DbType="tinyint NULL")] public StatType : int { get { _StatType; } } (to get C# code just replace variable's type) and after making linq select def StartLinq = linq <#from lpi in _CfgListParIzm whe...

How to cancel binding ObjectDataSource ?

CheckPara is my OnDataBinding procedure SqlDataSource1 is ObjectDataSource (it's only confusing name) Language is Nemerle, but if you know C# you can read it easy protected virtual CheckPara(_ : object, _ : System.EventArgs) : void { foreach(x is Parameter in SqlDataSource1.SelectParameters) when(x.Default...

How to add property to property map without class explorer ?

I've got a new question after answer on this question http://stackoverflow.com/questions/2816294/pass-parameter-from-page-to-activex How to add property to property map without class explorer ? Need to add the property for object and class explorer doesn't works because of Nemerle doesn't supports it yet. code : <object id="Bacs...

Integrating Nemerle in Visual C# 2010 Express

I would like to use Nemerle to write parts of a .NET application. Is there a plugin for Visual C# 2010 Express? The only one I found returns an error because it is thought for a different version of Visual C#. ...

Are there any DLL files that an application written in Nemerle needs to include?

When I deploy an application written in Nemerle, are there any DLL files specific for Nemerle that needs to be installed? If there are such DLL files, which are they? ...

Comparison Of Nemerle and F# For Functional On .Net

Hi all, Community Wiki Question: Pursuant to this question: What are the benefits of using Scala in .Net? another question comes to mind. Can anyone lay out the comparative advantages (and disadvantages) of Nemerle and F# for functional development on the .Net platform? I've just looked at Nemerle in passing. It sounds like it kind ...