Does anybody know if BLToolkit has been tested and certified for use with Azure Sql and if it supports the dropped connection retry functionality? And if not are there any plans to get it tested and passed?
Is it possible to speed-up BLToolkit when used for the first time? Right now it takes 3-4 seconds each time I start the application, later on it runs just fine. Is there anything I can do about this?
I'm in the process of converting my SQL procedures to Linq using the BLToolkit library.
Now I'm stuck on a little problem so if anyone know is this possible I will really appreciate the help.
Anyway I have the sql query that looks something like…
Trying to use BLToolkit mapper in my project. There is a thing that I really don't know how to solve , the deal is that I have 2 classes Content and Comment.
[MapField("CommentItemId","CommentContent.ContentId")]
public class Comment
{
…
I have a function, which takes in a number of days (var daysPrior), and a date (var inDate). The date is the current date we are looking at (for live system, it will be today's date).
The number of days needs to be subtracted from a date field in…
Assume I have a business object that has some properties that should
be read-only. For example:
public class Order
{
...
public DateTime OrderDate { get; set; }
...
public decimal OrderTotal { get; set; }
}
Also assume that…
I am using BLToolKit in a project of mine and I was trying to get this to work. What I don't like is that I am trying to average a bunch of temps down to the minute, but the select statement that is being generated groups by the minute but then…
In my database, there is one large "code" table with system code look-ups for values used all over the system. Like so:
[TableName("code_entries")] public class Code {
[MapField("code_nbr")][PrimaryKey, Identity] …
My scenario is little bit wierd, I have a list of entities, say i have ten items in list which will go to three different tables , associated to each other. I am using Linq 2 Sql and I need to insert it in a single hit instead of multiple…
Is there any examples of custom data provider for BLToolkit?
I need MongoDB provider and InMemory data provider. For example, I am reading some records from xml or files, and need to show them through BLToolkit selections and queries.
Anyone know how can I write the following update code by using the BLToolkit syntax, where I need to join two tables, and update one of them. In SQL Server this is done like this:
update Table1 set
Col1 = T.Col1 - TT.Col2
from
@tempTable as…
Is it possible to use SQL Server table-value functions by using the BLToolkit library?
I would like to use it within the Linq query, but I couldn't find anything regarding this on the library wiki.
I am using "Bltoolkit" to access sql server data.It works fine as per my requirement.Now I am trying to change connection string in runtime.I have tried below code but the connection is not changed that means its shows the default connection…
I use bltoolkit as orm and i had a problem with clob type.
I have a long string value and i got error while update operation.
Error: ORA01704 - String literal too long.
Checked table and my column type is clob.
There is no clob option in bltoolkit…
I have this weird problem where BLToolkit saves NULL instead of 0 in our database.
Demo to reproduce the bug
If you look the image, this is my values that will be saved. (gIdx stand for GroupIndex)
Here are the results in the database. If you look…