Description:
BLToolkit support and development.
|
|
|
caching data to disk
|
| |
Does bltoolkit have any facility for caching data to disk?
For example we are loading a fairly large dataset over a slow network
connection. When doing development, the data is essentially static, so
it would be nice to be able to spool the dataset to disk once, and
then read it from there, until some flag is reset in the configuration... more »
|
|
contains
|
| |
Goodday.
i'm using BlToolKit 4.1.4.0 & have same problem with linq. Have a
qwery:
var ret =
from a1 in context.GetTable<someTable>
where !(from calc in context.GetTable<someTable2>()
select new { calc.Some,
calc.Some2 })
.Contains(new { Some = a1.ID,... more »
|
|
bltoolkit query overriding
|
| |
Hi all!
Is it possible to override sql query result in bltoolkit?
i have associated query from database
var query = from u in db.User
select new
{
u.Id,
u.Login,... more »
|
|
Public read-only properties
|
| |
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 OrderTotal is a calculated value returned by a stored... more »
|
|
New to Logic Toolkit
|
| |
Hello,
I just heart about BLToolkit. However, please let me know how to start
using BLToolkit.
It would be a great help if you could provide me the steps to
incorporate this in my project.
Thanking you in advance.
Kiran
|
|
Use of Business Logic in our Data Integration
|
| |
Hi, Here is my situation: We have a data integration
application(Winforms application on .NET) that reads data from our
integration partners(various platforms) it into our application.
Currently we have mappings hard coded in code for each case and also
case specific processing, we want to move away from this architecture... more »
|
|
Bltoolkit Cache Aspect
|
| |
Hellow!
I'm using the Bltoolkit Cache Aspect for my CustomCacheAspect.
I discovered that the attribute [Cache] works only with virtual or
abstract methods. It's maked purposefully? if so, why? And if not,
what can i do to work with non overrideable methods? I want to use
caching in business logic tier, where lot of non-virtual and non-... more »
|
|
Extending BLToolkit expression builder
|
| |
Hi!
I am using BLToolkit in a 3-tier application together with Zyan and
InterLinq.
LINQ queries are constructed at the client-side, sent to server and
executed with BLToolkit.
BLToolkit assembly resides on the server-side only (for security
reasons).
I'd like to use my own methods in LINQ queries and hook into BLToolkit... more »
|
|
|